17 lines
388 B
SYSTEMD
17 lines
388 B
SYSTEMD
|
[Unit]
|
||
|
Description=Consul Agent
|
||
|
Requires=network-online.target
|
||
|
After=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
Restart=on-failure
|
||
|
Environment=CONSUL_ALLOW_PRIVILEGED_PORTS=true
|
||
|
ExecStart=/usr/local/bin/consul agent -config-dir="/etc/consul.d" -dns-port="53" -recursor="168.63.129.16"
|
||
|
ExecReload=/bin/kill -HUP $MAINPID
|
||
|
KillSignal=SIGTERM
|
||
|
User=root
|
||
|
Group=root
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|