• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/LDAP/smbldap-tools-0.8.7/
1#!/usr/bin/perl
2
3# $Id: smbldap-userdel,v 1.11 2005/01/08 12:04:45 jtournier Exp $
4#
5#  This code was developped by IDEALX (http://IDEALX.org/) and
6#  contributors (their names can be found in the CONTRIBUTORS file).
7#
8#                 Copyright (C) 2001-2002 IDEALX
9#
10#  This program is free software; you can redistribute it and/or
11#  modify it under the terms of the GNU General Public License
12#  as published by the Free Software Foundation; either version 2
13#  of the License, or (at your option) any later version.
14#
15#  This program is distributed in the hope that it will be useful,
16#  but WITHOUT ANY WARRANTY; without even the implied warranty of
17#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18#  GNU General Public License for more details.
19#
20#  You should have received a copy of the GNU General Public License
21#  along with this program; if not, write to the Free Software
22#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
23#  USA.
24
25# Purpose of smbldap-userdel : user (posix,shadow,samba) deletion
26
27use strict;
28use FindBin;
29use FindBin qw($RealBin);
30use lib "$RealBin/";
31use smbldap_tools;
32
33
34#####################
35
36use Getopt::Std;
37my %Options;
38
39my $ok = getopts('rR?', \%Options);
40
41if ( (!$ok) || (@ARGV < 1) || ($Options{'?'}) ) {
42  print_banner;
43  print "Usage: $0 [-r?] username\n";
44  print "  -r	remove home directory\n";
45  print "  -R	remove home directory interactively\n";
46  exit (1);
47}
48
49# Read only first @ARGV
50my $user = $ARGV[0];
51
52my $ldap_master=connect_ldap_master();
53
54my $dn;
55# user must not exist in LDAP
56if (!defined($dn=get_user_dn($user))) {
57  print "$0: user $user does not exist\n";
58  exit (6);
59}
60
61if ($< != 0) {
62  print "You must be root to delete an user\n";
63  exit (1);
64}
65
66my $homedir;
67if (defined($Options{'r'}) || defined($Options{'R'})) {
68  $homedir=get_homedir($user);
69  if ($homedir !~ /^\/.+\/(.*)$user/) {
70    print "Refusing to delete this home directory: $homedir\n";
71    exit (1);
72  }
73}
74
75# remove user from groups
76my @groups = &find_groups_of($user);
77foreach my $gname (@groups) {
78  if ($gname ne "") {
79    group_remove_member($gname, $user);
80  }
81}
82
83# XXX
84delete_user($user);
85
86# delete dir -- be sure that homeDir is not a strange value
87if ($homedir) {
88  my @rmargs = ( '-r' );
89  if (defined($Options{'R'})) {
90    push(@rmargs, '-i');
91  } elsif (defined($Options{'r'})) {
92    push(@rmargs, '-f');
93  }
94  # print "rm @rmargs $homedir\n";
95  system('rm', @rmargs, $homedir);
96}
97
98my $nscd_status = system "/etc/init.d/nscd status >/dev/null 2>&1";
99
100if ($nscd_status == 0) {
101  system "/etc/init.d/nscd restart > /dev/null 2>&1";
102}
103
104$ldap_master->unbind;		# take down session
105
106exit (0);
107
108############################################################
109
110=head1 NAME
111
112smbldap-userdel - Delete a user account and related files
113
114=head1 SYNOPSIS
115
116smbldap-userdel [-r] login
117
118=head1 DESCRIPTION
119
120The smbldap-userdel command modifies the system account files, deleting all entries that refer to user defined in "login". The named user must exist.
121
122-r
123  Files in the user's home directory will be removed along with the home directory itself. Files located in other file systems will have to be searched for and deleted manually.
124
125=head1 SEE ALSO
126
127       userdel(1)
128
129=cut
130
131#'
132