]>
git.cameronkatri.com Git - pw-darwin.git/blob - adduser/rmuser.sh
3 # Copyright (c) 2002, 2003 Michael Telahun Makonnen. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
8 # 1. Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution.
14 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 # Email: Mike Makonnen <mtm@FreeBSD.Org>
30 ATJOBDIR
="/var/at/jobs"
31 CRONJOBDIR
="/var/cron/tabs"
34 TEMPDIRS
="/tmp /var/tmp"
35 THISCMD
=`/usr/bin/basename $0`
38 # Display $msg on stderr.
41 echo 1>&2 ${THISCMD}: $
*
45 # Returns 0 if verbose mode is set, 1 if it is not.
48 [ -n "$vflag" ] && return 0 || return 1
52 # Removes files or empty directories belonging to $login from various
53 # temporary directories.
56 # The argument is required
57 [ -n $1 ] && login
=$1 || return
60 for _dir
in ${TEMPDIRS} ; do
62 if [ ! -d $_dir ]; then
63 err
"$_dir is not a valid directory."
66 verbose
&& echo -n "Removing files owned by ($login) in $_dir:"
67 filecount
=`find 2>/dev/null "$_dir" -user "$login" -delete -print | \
69 verbose
&& echo " $filecount removed."
70 totalcount
=$(($totalcount + $filecount))
72 ! verbose
&& [ $totalcount -ne 0 ] && echo -n " files($totalcount)"
76 # Removes unix mail and pop daemon files belonging to the user
77 # specified in the $login argument.
80 # The argument is required
81 [ -n $1 ] && login
=$1 || return
83 verbose
&& echo -n "Removing mail spool(s) for ($login):"
84 if [ -f ${MAILSPOOL}/$login ]; then
85 verbose
&& echo -n " ${MAILSPOOL}/$login" || \
87 rm ${MAILSPOOL}/$login
89 if [ -f ${MAILSPOOL}/${login}.pop
]; then
90 verbose
&& echo -n " ${MAILSPOOL}/${login}.pop" || \
92 rm ${MAILSPOOL}/${login}.pop
98 # Send a SIGKILL to all processes owned by $login.
101 # The argument is required
102 [ -n $1 ] && login
=$1 || return
104 verbose
&& echo -n "Terminating all processes owned by ($login):"
106 proclist
=`ps 2>/dev/null -U $login | grep -v '^\ *PID' | awk '{print $1}'`
107 for _pid
in $proclist ; do
108 kill 2>/dev
/null
${SIGKILL} $_pid
109 killcount
=$(($killcount + 1))
111 verbose
&& echo " ${SIGKILL} signal sent to $killcount processes."
112 ! verbose
&& [ $killcount -ne 0 ] && echo -n " processes(${killcount})"
116 # Remove at (1) jobs belonging to $login.
119 # The argument is required
120 [ -n $1 ] && login
=$1 || return
122 atjoblist
=`find 2>/dev/null ${ATJOBDIR} -maxdepth 1 -user $login -print`
124 verbose
&& echo -n "Removing at(1) jobs owned by ($login):"
125 for _atjob
in $atjoblist ; do
127 jobcount
=$(($jobcount + 1))
129 verbose
&& echo " $jobcount removed."
130 ! verbose
&& [ $jobcount -ne 0 ] && echo -n " at($jobcount)"
134 # Removes crontab file belonging to user $login.
137 # The argument is required
138 [ -n $1 ] && login
=$1 || return
140 verbose
&& echo -n "Removing crontab for ($login):"
141 if [ -f ${CRONJOBDIR}/$login ]; then
142 verbose
&& echo -n " ${CRONJOBDIR}/$login" || echo -n " crontab"
143 rm -f ${CRONJOBDIR}/$login
149 # Remove user $login from the system. This subroutine makes use
150 # of the pw(8) command to remove a user from the system. The pw(8)
151 # command will remove the specified user from the user database
152 # and group file and remove any crontabs. His home
153 # directory will be removed if it is owned by him and contains no
154 # files or subdirectories owned by other users. Mail spool files will
158 # The argument is required
159 [ -n $1 ] && login
=$1 || return
161 verbose
&& echo -n "Removing user ($login)"
162 [ -n "$pw_rswitch" ] && {
163 verbose
&& echo -n " (including home directory)"
164 ! verbose
&& echo -n " home"
166 ! verbose
&& echo -n " passwd"
167 verbose
&& echo -n " from the system:"
168 pw userdel
-n $login $pw_rswitch
169 verbose
&& echo ' Done.'
173 # Prompts the user with a $msg. The answer is expected to be
174 # yes, no, or some variation thereof. This subroutine returns 0
175 # if the answer was yes, 1 if it was not.
178 # The argument is required
179 [ -n "$1" ] && msg
="$1" || return
188 [Yy
][Ee
][Ss
]|[Yy
][Ee
]|[Yy
])
199 # Display usage message.
202 echo "usage: ${THISCMD} [-yv] [-f file] [user ...]"
203 echo " if the -y switch is used, either the -f switch or"
204 echo " one or more user names must be given"
207 #### END SUBROUTINE DEFENITION ####
217 procowner
=`/usr/bin/id -u`
218 if [ "$procowner" != "0" ]; then
219 err
'you must be root (0) to use this utility.'
223 args
=`getopt 2>/dev/null yvf: $*`
224 if [ "$?" != "0" ]; then
251 # Get user names from a file if the -f switch was used. Otherwise,
252 # get them from the commandline arguments. If we're getting it
253 # from a file, the file must be owned by and writable only by root.
256 _insecure
=`find $ffile ! -user 0 -or -perm +0022`
257 if [ -n "$_insecure" ]; then
258 err
"file ($ffile) must be owned by and writeable only by root."
261 if [ -r "$ffile" ]; then
262 userlist
=`cat $ffile | while read _user _junk ; do
267 echo -n "$userlist $_user"
274 userlist
="$userlist $1"
279 # If the -y or -f switch has been used and the list of users to remove
280 # is empty it is a fatal error. Otherwise, prompt the user for a list
281 # of one or more user names.
283 if [ ! "$userlist" ]; then
285 err
"($ffile) does not exist or does not contain any user names."
287 elif [ $yflag ]; then
291 echo -n "Please enter one or more user name's: "
298 for _user
in $userlist ; do
299 # Make sure the name exists in the passwd database and that it
300 # does not have a uid of 0
302 userrec
=`pw 2>/dev/null usershow -n $_user`
303 if [ "$?" != "0" ]; then
304 err
"user ($_user) does not exist in the password database."
307 _uid
=`echo $userrec | awk -F: '{print $3}'`
308 if [ "$_uid" = "0" ]; then
309 err
"user ($_user) has uid 0. You may not remove this user."
313 # If the -y switch was not used ask for confirmation to remove the
314 # user and home directory.
316 if [ -z "$yflag" ]; then
317 echo "Matching password entry:"
321 if ! prompt_yesno
"Is this the entry you wish to remove? " ; then
324 _homedir
=`echo $userrec | awk -F: '{print $9}'`
325 if prompt_yesno
"Remove user's home directory ($_homedir)? "; then
332 # Disable any further attempts to log into this account
333 pw
2>/dev
/null lock
$_user
335 # Remove crontab, mail spool, etc. Then obliterate the user from
336 # the passwd and group database.
338 ! verbose
&& echo -n "Removing user ($_user):"
345 ! verbose
&& echo "."