salt/debian/salt-master.upstart
2014-06-30 15:04:53 -06:00

15 lines
337 B
Text

description "Salt Master"
start on (net-device-up
and local-filesystems
and runlevel [2345])
stop on runlevel [!2345]
limit nofile 100000 100000
expect fork
script
# Read configuration variable file if it is present
[ -f /etc/default/$UPSTART_JOB ] && . /etc/default/$UPSTART_JOB
exec salt-master
end script