diff -Naur BackupPC-2.1.0-old/init.d/src/gentoo-backuppc BackupPC-2.1.0-new/init.d/src/gentoo-backuppc --- BackupPC-2.1.0-old/init.d/src/gentoo-backuppc 2004-06-20 03:28:08.000000000 +0100 +++ BackupPC-2.1.0-new/init.d/src/gentoo-backuppc 2005-02-05 02:49:10.195802263 +0000 @@ -9,9 +9,6 @@ # description: Starts and stops the BackupPC server # Copy to /etc/init.d and run 'rc-update add backuppc default' -# get our configuration options -source /etc/conf.d/backuppc - checkconfig() { if [ ! -f ${CONF_FILE} ] ; then eeror "No ${CONF_FILE} exists!" @@ -30,16 +27,3 @@ start-stop-daemon --stop --pidfile ${PID_FILE} --name BackupPC eend $? } - -restart() { - ebegin "Restarting BackupPC" - svc_stop - svc_start - eend $? "Failed to restart BackupPC" -} - -status() { - return - eend $? -} -