www.usr.com/support/gpl/USR9108_release1.5.tar.gz
[bcm963xx.git] / userapps / opensource / busybox / loginutils / deluser.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * deluser (remove lusers from the system ;) for TinyLogin
4  *
5  * Copyright (C) 1999 by Lineo, inc. and John Beppu
6  * Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include <sys/stat.h>
25 #include <unistd.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include "busybox.h"
30
31
32 #include "delline.c"
33
34 static const char deluser_format[]="%s: User could not be removed from %s";
35
36 int deluser_main(int argc, char **argv)
37 {
38         /* int successful; */
39         int failure;
40
41         if (argc != 2) {
42                 bb_show_usage();
43         } else {
44
45                 failure = del_line_matching(argv[1], bb_path_passwd_file);
46                 if (failure) {
47                         bb_error_msg_and_die(deluser_format, argv[1], bb_path_passwd_file);
48                 }
49 #ifdef CONFIG_FEATURE_SHADOWPASSWDS
50                 failure = del_line_matching(argv[1], bb_path_shadow_file);
51                 if (failure) {
52                         bb_error_msg_and_die(deluser_format, argv[1], bb_path_shadow_file);
53                 }
54                 failure = del_line_matching(argv[1], bb_path_gshadow_file);
55                 if (failure) {
56                         bb_error_msg_and_die(deluser_format, argv[1], bb_path_gshadow_file);
57                 }
58 #endif
59                 failure = del_line_matching(argv[1], bb_path_group_file);
60                 if (failure) {
61                         bb_error_msg_and_die(deluser_format, argv[1], bb_path_group_file);
62                 }
63
64         }
65         return (EXIT_SUCCESS);
66 }
67
68 /* $Id: deluser.c,v 1.3 2003/03/19 09:12:20 mjn3 Exp $ */