mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
13 lines
297 B
Plaintext
13 lines
297 B
Plaintext
description "salt-syndic"
|
|
|
|
start on (net-device-up
|
|
and local-filesystems
|
|
and runlevel [2345])
|
|
stop on runlevel [!2345]
|
|
|
|
script
|
|
# Read configuration variable file if it is present
|
|
[ -f /etc/default/$UPSTART_JOB ] && . /etc/default/$UPSTART_JOB
|
|
|
|
exec salt-syndic
|
|
end script |