14 lines
324 B
Plaintext
14 lines
324 B
Plaintext
# Install to /etc/systemd/system/watcher.service
|
|
[Unit]
|
|
Description=Run watcher
|
|
After=network-online.target
|
|
Wants=network-online.target systemd-networkd-wait-online.service
|
|
|
|
[Service]
|
|
Type=exec
|
|
ExecStart=/usr/local/bin --watcher_config /etc/watcher.yaml
|
|
Restart=on-failure
|
|
RestartSec=5s
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |