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

Autostart script

parent 29e26ea6
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,9 @@
state=installed
update_cache=yes
# Autostart:
# sudo update-rc.d spideroak defaults
# Initial setup:
# $ SpiderOakONE --setup=-
# or provide a jason file with the credentials: {"username": "username","password": "password","reinstall": true | false,"device_name": "device name"}
......
#!/bin/sh
### BEGIN INIT INFO
# Provides: spideroak
# Short-Description: Start and stop spideroak in headless mode
# Description: SpiderOak is an encrypted cloud storage solution
# Required-Start: $remote_fs
# Required-Stop: $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
### END INIT INFO
# Action to take
case "$1" in
start)
echo "Starting SpiderOak ..."
SpiderOakONE --headless &
exit 0
;;
stop)
echo "Stoping not supported yet."
ecit 0
;;
*)
echo "Usage: service spideroak {start|stop}"
exit 1
;;
esac
exit $?
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