-
-
Save mrchnk/b90a3e122f3b6fd046241f268379c9ef to your computer and use it in GitHub Desktop.
init.d file for aria2c daemon (debian)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: aria2 | |
# Required-Start: $local_fs $remote_fs | |
# Required-Stop: $local_fs $remote_fs | |
# Should-Start: $network | |
# Should-Stop: $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: aria2c init script. | |
# Description: Starts and stops aria2 daemon. | |
### END INIT INFO | |
USER="odroid" | |
DAEMON=/usr/bin/aria2c | |
CONF=/etc/aria2.conf | |
start() { | |
if [ -f $CONF ]; then | |
echo "Starting aria2 daemon" | |
start-stop-daemon -S -c $USER -x $DAEMON -- -D --enable-rpc --conf-path=$CONF | |
else | |
echo "Couldn't start aria2 daemon for $USER (no $CONF found)" | |
fi | |
} | |
stop() { | |
start-stop-daemon -o -c $USER -K -u $USER -x $DAEMON | |
} | |
status() { | |
dbpid=`pgrep -fu $USER $DAEMON` | |
if [ -z "$dbpid" ]; then | |
echo "aria2c daemon for USER $USER: not running." | |
else | |
echo "aria2c daemon for USER $USER: running (pid $dbpid)" | |
fi | |
} | |
case "$1" in | |
start) | |
start | |
;; | |
stop) | |
stop | |
;; | |
restart|reload|force-reload) | |
stop | |
start | |
;; | |
status) | |
status | |
;; | |
*) | |
echo "Usage: /etc/init.d/aria2 {start|stop|reload|force-reload|restart|status}" | |
exit 1 | |
esac | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment