According to systemd.special(7): > Units that strictly require a configured network connection should > pull in network-online.target (via a Wants= type dependency) and > order themselves after it. The Wants= dependency was missing, add it.
25 lines
490 B
Plaintext
25 lines
490 B
Plaintext
#
|
|
# clatd service file for systemd
|
|
#
|
|
# Install it to: /etc/systemd/system/clatd.service
|
|
# Enable it with: systemctl enable clatd.service
|
|
# Start it with: systemctl start clatd.service
|
|
#
|
|
# Written by Tore Anderson <tore@fud.no>
|
|
#
|
|
|
|
[Unit]
|
|
Description=464XLAT CLAT daemon
|
|
Documentation=man:clatd(8)
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
After=nss-lookup.target
|
|
StartLimitIntervalSec=0
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/sbin/clatd
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|