xref: /illumos-gate/usr/src/cmd/yppasswd/yppasswd.c (revision 2a8bcb4e)
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 #include <stdio.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <locale.h>
31 
32 static void
usage(void)33 usage(void)
34 {
35 	(void) fprintf(stderr, "%s\n\n", gettext("usage: yppasswd [username]"));
36 	(void) fprintf(stderr, "%s\n", gettext("NOTE:"));
37 	(void) fprintf(stderr, "%s\n", gettext("yppasswd and nispasswd have "
38 			"been replaced by the new passwd command."));
39 	(void) fprintf(stderr, "%s\n",
40 		gettext("See passwd(1) for more information."));
41 }
42 
43 int
main(int argc,char * argv[])44 main(int argc, char *argv[])
45 {
46 	char *new_argv[5];
47 
48 	(void) setlocale(LC_ALL, "");
49 
50 #if !defined(TEXT_DOMAIN)	/* Should be defined by cc -D */
51 #define	TEXT_DOMAIN "SYS_TEST"	/* Use this only if it weren't */
52 #endif
53 	(void) textdomain(TEXT_DOMAIN);
54 
55 	if (argc > 2) {
56 		usage();
57 		exit(1);
58 	}
59 	new_argv[0] = "yppasswd";
60 	new_argv[1] = "-r";
61 	new_argv[2] = "nis";
62 	if (argc == 1) {
63 		new_argv[3] = NULL;
64 	} else {
65 		new_argv[3] = argv[1];
66 		new_argv[4] = NULL;
67 	}
68 
69 	(void) execvp("/bin/passwd", new_argv);
70 	perror("/bin/passwd");
71 	return (1);
72 }
73