:
#	@(#) deluser.sh 1.4 88/11/11 
#
#
#	      UNIX is a registered trademark of AT&T
#		Portions Copyright 1976-1989 AT&T
#	Portions Copyright 1980-1989 Microsoft Corporation
#    Portions Copyright 1983-1989 The Santa Cruz Operation, Inc
#		      All Rights Reserved

:
#	Copyright (c) 1984, 1986, 1987, 1988 AT&T
#	  All Rights Reserved

#	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
#	The copyright notice above does not evidence any
#	actual or intended publication of such source code.

# delete a user from the system
# 
#	Deluser allows you to remove users from the computer.  The
#	deleted user's files are removed from the file systems and their
#	logins are removed from the /etc/passwd file.

rm -f /usr/tmp/addcfm

loginid=$1
home=$3

if [ $# -lt 3 ]
then
	echo "USAGE: $0 <login id> <Yes/No> <home directory>"
	exit 1
fi

if [ "$home" = "" ]
then
	echo "Home directory can't be null"
	exit 1
fi

#	check if login name exists

grep "^$1:" /etc/passwd >/dev/null
rc=$?
if [ $rc -ne 0 ]
then
	echo "That login doesn't exist on the system."
	exit 1
fi

if [ "$2" = "Yes" ]
then

	rm -f /usr/mail/${loginid}

#
#	Copy all files to lost+found
#

	mkdir /lost+found/${loginid}
	cd ${home}

	find . -print | cpio -pcvd /lost+found/${loginid}

#
#	Remove home directory
#
	cd /
	rm -r ${home}
#
#	Search system for all files owned by loginid
#	Not sure if they want this yet.
#

#nohup find / -user $loginid -type f -exec mv {} /lost+found/${loginid} \; > /dev/null 2>&1 &

fi

#
#	Omit /etc/passwd entry
#

/usr/bin/passmgmt -d $loginid

#
#	Omit /etc/.useradm entry (if it exits)
#

if [ -f /etc/.useradm ]
then
	grep "^${loginid}" /etc/.useradm > /dev/null
	if test $? = 0
	then
		if test -r /etc/adm.lock
		then
			exit
		else
			ed - /etc/.useradm <<-!
			H
			/^${loginid}/d
			w
			q
			!
			rm -f /etc/adm.lock
		fi
	fi
fi
