aports/main/backuppc/backuppc.initd
Jesse Young ae1967b66e Replace instances of "--chuid" to "--user" in initd scripts
Fixes #776

Signed-off-by: Jesse Young <jlyo@jlyo.org>
2011-12-01 07:15:51 +00:00

44 lines
856 B
Plaintext

#!/sbin/runscript
depend() {
after firewall modules
}
configure () {
chown $USER $BACKUPPC_LOGDIR
chmod a+x $BACKUPPC_BINDIR/*
test -x $BACKUPPC_BINDIR/$DAEMON || exit 0
}
start() {
ebegin "Starting $DAEMON"
start-stop-daemon --start --pidfile $BACKUPPC_LOGDIR/BackupPC.pid \
--user $USER --exec $BACKUPPC_BINDIR/$DAEMON -- -d
eend $?
}
stop () {
ebegin "Stopping $DAEMON"
start-stop-daemon --stop --pidfile $BACKUPPC_LOGDIR/BackupPC.pid \
--retry 30 -x /usr/bin/perl
eend $?
}
restart () {
start-stop-daemon --stop --pidfile $BACKUPPC_LOGDIR/BackupPC.pid \
--retry 30 -x /usr/bin/perl
start-stop-daemon --start --pidfile $BACKUPPC_LOGDIR/BackupPC.pid \
--user $USER --exec $BACKUPPC_BINDIR/$DAEMON -- -d
}
reload () {
start-stop-daemon --stop --pidfile $BACKUPPC_LOGDIR/BackupPC.pid \
--signal 1 -x /usr/bin/perl
}