25 lines
565 B
Text
25 lines
565 B
Text
|
description "Consul agent"
|
||
|
|
||
|
start on runlevel [2345]
|
||
|
stop on runlevel [!2345]
|
||
|
|
||
|
respawn
|
||
|
|
||
|
script
|
||
|
if [ -f "/etc/service/consul" ]; then
|
||
|
. /etc/service/consul
|
||
|
fi
|
||
|
|
||
|
# Make sure to use all our CPUs, because Consul can block a scheduler thread
|
||
|
export GOMAXPROCS=`nproc`
|
||
|
|
||
|
# Get the public IP
|
||
|
BIND=`ifconfig eth0 | grep "inet addr" | awk '{ print substr($2,6) }'`
|
||
|
|
||
|
exec start-stop-daemon --start -c consul \
|
||
|
--exec /usr/local/bin/consul agent -- \
|
||
|
-config-dir="/etc/consul.d" \
|
||
|
${CONSUL_FLAGS} \
|
||
|
>> /var/log/consul.log 2>&1
|
||
|
end script
|