Make /etc/salt-master usefull

Add environment variable to have a custom CONFIG_DIR
This commit is contained in:
Xavier Henner 2014-12-11 14:58:47 +01:00
parent 006a3179d3
commit 59ebeca5e1

View file

@ -6,6 +6,8 @@ start on (net-device-up
stop on runlevel [!2345]
limit nofile 100000 100000
env CONFIG_DIR=/etc/salt
script
# Read configuration variable file if it is present
[ -f /etc/default/$UPSTART_JOB ] && . /etc/default/$UPSTART_JOB
@ -13,5 +15,5 @@ script
# Activate the virtualenv if defined
[ -f $SALT_USE_VIRTUALENV/bin/activate ] && . $SALT_USE_VIRTUALENV/bin/activate
exec salt-master
exec salt-master -c $CONFIG_DIR
end script