mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
16 lines
385 B
Plaintext
16 lines
385 B
Plaintext
description "Salt Master"
|
|
|
|
start on runlevel [2345]
|
|
stop on runlevel [!2345]
|
|
limit nofile 100000 100000
|
|
|
|
script
|
|
# Read configuration variable file if it is present
|
|
[ -f /etc/default/$UPSTART_JOB ] && . /etc/default/$UPSTART_JOB
|
|
|
|
# Activate the virtualenv if defined
|
|
[ -f $SALT_USE_VIRTUALENV/bin/activate ] && . $SALT_USE_VIRTUALENV/bin/activate
|
|
|
|
exec salt-master
|
|
end script
|