The following commits changed only clatd.systemd, but it makes sense to applt them to clatd@.systemd as well.eb27dd5clatd.systemd: pull inn network-online.target00fa0f3SystemD service: ensure service starts after DNS queries (e.g. ipv4only.arpa) can be resolved.
29 lines
668 B
Plaintext
29 lines
668 B
Plaintext
#
|
|
# clatd service file for systemd
|
|
#
|
|
# Install it to: /etc/systemd/system/clatd@.service
|
|
# Start it with: systemctl start clatd@iface.service
|
|
# Stop it with: systemctl stop clatd@iface.service
|
|
#
|
|
# This is to dynamicaly enable and disable the clat depending on the
|
|
# connected network.
|
|
#
|
|
# Written by Tore Anderson <tore@fud.no>
|
|
# Updated by satanist <satanist+fsmi@bureaucracy.de>
|
|
#
|
|
|
|
[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 -c /etc/clatd/%i.conf
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|