Skip to content
Snippets Groups Projects
Commit 2108f311 authored by jurgenhaas's avatar jurgenhaas
Browse files

Autostart script

parent bbf0b3e7
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,8 @@
# Autostart:
# sudo update-rc.d spideroak defaults
# --headless doesn't work for now, so it is implemented as a crontab:
# 35 * * * * SpiderOakONE --batchmode >/dev/null 2>&1
# Initial setup:
# $ SpiderOakONE --setup=-
......
......@@ -28,3 +28,33 @@ case "$1" in
esac
exit $?
. /etc/rc.d/init.d/functions
# Check for a config file
[ -f /etc/sysconfig/SpiderOak ] && . /etc/sysconfig/SpiderOak
[ -z "$SPIDEROAKUSER" ] && SPIDEROAKUSER='bcotton'
[ -z "$SPIDEROAKCMD" ] && SPIDEROAKCMD='/usr/bin/SpiderOak'
case "$1" in
start)
for user in $SPIDEROAKUSER; do
runuser $user -c "$SPIDEROAKCMD --headless $SPIDEROAKOPTS &"
retval=$?
[ $? ] && echo_success || echo_failure
done
;;
stop)
kill `pidof SpiderOak` && echo "SpiderOak stopped"
retval=$?
[ $? ] && echo_success || echo_failure
;;
*)
echo "Usage: $0 {start|stop}"
esac
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment