decouple delgroup and deluser
[oweals/busybox.git] / 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 #endif
35
36 int delgroup_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_group_file);
46 #ifdef CONFIG_FEATURE_SHADOWPASSWDS
47                 if (access(bb_path_gshadow_file, W_OK) == 0) {
48                         /* EDR the |= works if the error is not 0, so he had it wrong */
49                         failure |= del_line_matching(argv[1], bb_path_gshadow_file);
50                 }
51 #endif
52                 if (failure) {
53                         bb_error_msg_and_die("%s: Group could not be removed\n", argv[1]);
54                 }
55
56         }
57         return (EXIT_SUCCESS);
58 }
59
60 /* $Id: delgroup.c,v 1.1 2003/07/14 20:20:45 andersen Exp $ */