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
# It is highly recommended that you run this under a user account and not as root | |
# The LOGFILE must also be set to a directory writable by the user account | |
# Location of the log file (must be by the current user writable) | |
env LOGFILE=/home/utorrent/log/utorrent.log | |
# Path to the utorrent server | |
env UTORRENT_PATH=/home/utorrent/shared/programs/utorrent/utorrent-server-v3_0 | |
# Name of the utorrent server binary (you usually don't need to change this) | |
env EXEC=utserver | |
# Nice value you can comment this out if don't want to run at a lower priority | |
nice 15 | |
start on (local-filesystems and net-device-up IFACE=eth0) | |
stop on runlevel [016] | |
# It is highly recommended that you don't run as the root user you will need | |
# to change this line to have your own user account for example: | |
# | |
# exec su <your user account> -c <utorrent command> | |
exec su utorrent -c "$UTORRENT_PATH/$EXEC -settingspath $UTORRENT_PATH -logfile $LOGFILE" | |
post-start script | |
#bind validation | |
while [ ! -e $LOGFILE ]; do | |
sleep 1 #Wait for file to be generated | |
done | |
while [ ! -n "$(cat $LOGFILE|grep 'IPv6 is installed')" ]; do | |
#wait until utorrent has finished bootup (IPv6 MESSAGE is the last message) | |
sleep 1 | |
done | |
RESULT=$(cat $LOGFILE|grep 'bind failed') | |
if [ -n "$RESULT" ]; then | |
#bind failure stop the job | |
exit 3 | |
fi | |
end script | |
post-stop script | |
#block process until server is completed shutting down fully | |
while [ -n "$(pidof "$EXEC")" ]; do | |
sleep 1 | |
done | |
rm $LOGFILE | |
end script |