scottslowe-learning-tools/docker-swarm/consul.conf
Scott Lowe 7f5e48092d Rename project
Rename directory for this project from "consul-docker-registrator"
to "docker-swarm" to more accurately reflect the purpose of the
files in this directory.
2015-03-04 14:28:37 -07:00

19 lines
No EOL
336 B
Text

description "Consul server process"
start on runlevel [2345]
stop on runlevel [!2345]
respawn
script
if [ -f "/etc/service/consul" ]; then
. /etc/service/consul
fi
export GOMAXPROCS=`nproc`
exec /usr/local/bin/consul agent \
-config-dir="/etc/consul.d/server" \
${CONSUL_FLAGS} \
>>/var/log/consul.log 2>&1
end script