#!/bin/sh
# DocumentId:	$Id: dpsyco-restorehome,v 1.6 2001/09/28 15:08:49 ola Exp $
# Author:	$Author: ola $
# Date:		$Date: 2001/09/28 15:08:49 $
# Summary:
#	Restores 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
restoredir $1
