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

14 lines
254 B
Text
Raw Normal View History

2014-02-07 10:10:01 +00:00
start on (filesystem and net-device-up)
console log
script
2014-07-11 22:29:31 +00:00
mkdir -p /root/.drone
cd /root/.drone
DRONED_OPTS="--port=:80"
if [ -f /etc/default/$UPSTART_JOB ]; then
. /etc/default/$UPSTART_JOB
fi
droned $DRONED_OPTS
2014-06-04 21:25:38 +00:00
end script