2012-12-13 21:03:23 +00:00
|
|
|
description "Salt Master"
|
2012-11-23 21:35:58 +00:00
|
|
|
|
|
|
|
start on (net-device-up
|
|
|
|
and local-filesystems
|
|
|
|
and runlevel [2345])
|
|
|
|
stop on runlevel [!2345]
|
2013-06-01 06:50:05 +00:00
|
|
|
limit nofile 100000 100000
|
2012-11-23 21:35:58 +00:00
|
|
|
|
2013-03-01 21:24:55 +00:00
|
|
|
script
|
2013-09-11 20:14:14 +00:00
|
|
|
# Read configuration variable file if it is present
|
|
|
|
[ -f /etc/default/$UPSTART_JOB ] && . /etc/default/$UPSTART_JOB
|
|
|
|
|
2013-10-18 17:56:32 +00:00
|
|
|
# Activate the virtualenv if defined
|
|
|
|
[ -f $SALT_USE_VIRTUALENV/bin/activate ] && . $SALT_USE_VIRTUALENV/bin/activate
|
|
|
|
|
2014-03-25 22:10:08 +00:00
|
|
|
exec salt-master
|
2013-03-01 21:24:55 +00:00
|
|
|
end script
|