www.usr.com/support/gpl/USR9108_release1.5.tar.gz
[bcm963xx.git] / userapps / opensource / busybox / loginutils / delgroup.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 #if ! defined CONFIG_DELUSER
33 #include "delline.c"
34 #else
35 extern int del_line_matching(const char *login, const char *filename);
36 #endif
37
38 int delgroup_main(int argc, char **argv)
39 {
40         /* int successful; */
41         int failure;
42
43         if (argc != 2) {
44                 bb_show_usage();
45         } else {
46
47                 failure = del_line_matching(argv[1], bb_path_group_file);
48 #ifdef CONFIG_FEATURE_SHADOWPASSWDS
49                 if (access(bb_path_gshadow_file, W_OK) == 0) {
50                         /* EDR the |= works if the error is not 0, so he had it wrong */
51                         failure |= del_line_matching(argv[1], bb_path_gshadow_file);
52                 }
53 #endif
54                 if (failure) {
55                         bb_error_msg_and_die("%s: Group could not be removed\n", argv[1]);
56                 }
57
58         }
59         return (EXIT_SUCCESS);
60 }
61
62 /* $Id: delgroup.c,v 1.1 2003/07/14 20:20:45 andersen Exp $ */