woodpecker/debian/drone/etc/init/drone.conf

13 lines
239 B
Text
Raw Normal View History

2014-02-07 10:10:01 +00:00
start on (filesystem and net-device-up)
chdir /var/lib/drone
2014-02-07 10:10:01 +00:00
console log
script
2014-08-03 21:45:50 +00:00
set -a
DRONED_OPTS="--port=:80"
if [ -f /etc/default/$UPSTART_JOB ]; then
. /etc/default/$UPSTART_JOB
fi
/usr/local/bin/droned $DRONED_OPTS
2014-06-04 21:25:38 +00:00
end script