#!/bin/sh # kiosk-home-init --- this overwrites /var/home/guest/ with # the contents of /var-ro/home/guest/. # # created by jwz, 23-May-2000 PATH=/bin:/usr/bin FROM=/home/guest-ro TO=/home/guest if [ -d $FROM -a -d $TO ]; then echo -n "Initializing $TO from $FROM... " rm -rf $TO/* $TO/.?* 2>/dev/null cd $FROM find . -depth -print | cpio -pdm $TO fi rm -rf /tmp/* /tmp/.??* /usr/local/sbin/kiosk-nick-reset exit 0