#!/bin/sh
# DocumentId:	$Id: dpsyco-delhome,v 1.7 2001/10/09 14:53:36 ola Exp $
# Author:	$Author: ola $
# Date:		$Date: 2001/10/09 14:53:36 $
# Summary:
#	Deletes the user home directory.

if [ -z "$1" ] ; then
    echo "No user specified, exiting."
    exit 0
fi

. /etc/dpsyco/defaults.conf
. /usr/share/dpsyco/delrestoredir.func

cd $DHOME
deldir $1
