19 lines
460 B
SYSTEMD
19 lines
460 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description="HashiCorp Consul - A service mesh solution"
|
||
|
|
Documentation=https://www.consul.io/
|
||
|
|
Requires=network-online.target
|
||
|
|
After=network-online.target
|
||
|
|
ConditionFileNotEmpty=/etc/consul/config.json
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=notify
|
||
|
|
User=consul
|
||
|
|
Group=consul
|
||
|
|
ExecStart=/usr/local/bin/consul agent -config-file=/etc/consul/config.json
|
||
|
|
ExecReload=/usr/local/bin/consul reload
|
||
|
|
KillMode=process
|
||
|
|
Restart=on-failure
|
||
|
|
LimitNOFILE=65536
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|