#/bin/sh

ROOT_DIR=/usr/local

if test -x ${ROOT_DIR}/etc/rc.d/spare.sh; then
    echo -n "starting"
    killall spare > /dev/null 2>&1
    ${ROOT_DIR}/etc/rc.d/spare.sh
    echo " ... done"
fi

if test ! -s ${ROOT_DIR}/etc/polyserve/spare_users.dat; then
    echo "Remember to set the password for \"admin\" with the sppasswd utility!"
fi

exit 0
