1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
13 *
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright (c) 2001 by Sun Microsystems, Inc.
24 * All rights reserved.
25 */
26
27 #pragma ident "%Z%%M% %I% %E% SMI"
28
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <locale.h>
33
34 static void
usage(void)35 usage(void)
36 {
37 (void) fprintf(stderr, "%s\n\n", gettext("usage: yppasswd [username]"));
38 (void) fprintf(stderr, "%s\n", gettext("NOTE:"));
39 (void) fprintf(stderr, "%s\n", gettext("yppasswd and nispasswd have "
40 "been replaced by the new passwd command."));
41 (void) fprintf(stderr, "%s\n",
42 gettext("See passwd(1) for more information."));
43 }
44
45 int
main(int argc,char * argv[])46 main(int argc, char *argv[])
47 {
48 char *new_argv[5];
49
50 (void) setlocale(LC_ALL, "");
51
52 #if !defined(TEXT_DOMAIN) /* Should be defined by cc -D */
53 #define TEXT_DOMAIN "SYS_TEST" /* Use this only if it weren't */
54 #endif
55 (void) textdomain(TEXT_DOMAIN);
56
57 if (argc > 2) {
58 usage();
59 exit(1);
60 }
61 new_argv[0] = "yppasswd";
62 new_argv[1] = "-r";
63 new_argv[2] = "nis";
64 if (argc == 1) {
65 new_argv[3] = NULL;
66 } else {
67 new_argv[3] = argv[1];
68 new_argv[4] = NULL;
69 }
70
71 (void) execvp("/bin/passwd", new_argv);
72 perror("/bin/passwd");
73 return (1);
74 }
75