3 # This code was developped by IDEALX (http://IDEALX.org/) and
4 # contributors (their names can be found in the CONTRIBUTORS file).
6 # Copyright (C) 2001-2002 IDEALX
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License
10 # as published by the Free Software Foundation; either version 2
11 # of the License, or (at your option) any later version.
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
16 # GNU General Public License for more details.
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,
23 # Purpose of smbldap-userdel : user (posix,shadow,samba) deletion
34 my $ok = getopts
('r?', \
%Options);
36 if ( (!$ok) || (@ARGV < 1) || ($Options{'?'}) ) {
37 print "Usage: $0 [-r?] username\n";
38 print " -r remove home directory\n";
42 # Read only first @ARGV
46 # user must not exist in LDAP
47 if (!defined($dn=get_user_dn
($user))) {
48 print "$0: user $user does not exist\n";
53 print "You must be root to delete an user\n";
58 if (defined($Options{'r'})) {
59 $homedir=get_homedir
($user);
62 # remove user from groups
63 my $groups = find_groups_of
$user;
64 my @grplines = split(/\n/, $groups);
67 foreach $grp (@grplines) {
69 if ( $grp =~ /dn: cn=([^,]+),/) {
74 group_remove_member
($gname, $user);
81 # delete dir -- be sure that homeDir is not a strange value
82 if (defined($Options{'r'})) {
83 if ($homedir !~ /^\/dev
/ and $homedir !~ /^\
/$/) {
84 system "rm -rf $homedir";
88 my $nscd_status = system "/etc/init.d/nscd status >/dev/null 2>&1";
90 if ($nscd_status == 0) {
91 system "/etc/init.d/nscd restart > /dev/null 2>&1";
96 ############################################################
100 smbldap-userdel.pl - Delete a user account and related files
104 smbldap-userdel.pl [-r] login
108 The smbldap-userdel.pl command modifies the system
109 account files, deleting all entries that refer to login.
110 The named user must exist.
112 -r Files in the user's home directory will be removed along with
113 the home directory itself. Files located in other file
114 systems will have to be searched for and deleted manually.