Add upstart fuile for syndic

Since the syndic is a minion it uses basically the same setup as the
salt minion system.
This commit is contained in:
Thomas S Hatch 2012-06-12 10:52:44 -06:00
parent d982e4c4f2
commit 5519cf8335

12
debian/salt-syndic.upstart vendored Normal file
View file

@ -0,0 +1,12 @@
description "salt-syndic"
start on (net-device-up
and local-filesystems
and runlevel [2345])
stop on runlevel [!2345]
respawn limit 10 5
script
exec /usr/bin/python /usr/bin/salt-syndic > /dev/null 2>&1
end script