clatd.systemd: pull inn network-online.target

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.
This commit is contained in:
Tore Anderson
2025-02-09 10:11:33 +01:00
parent f763915903
commit eb27dd5ead

View File

@@ -11,6 +11,7 @@
[Unit] [Unit]
Description=464XLAT CLAT daemon Description=464XLAT CLAT daemon
Documentation=man:clatd(8) Documentation=man:clatd(8)
Wants=network-online.target
After=network-online.target After=network-online.target
After=nss-lookup.target After=nss-lookup.target
StartLimitIntervalSec=0 StartLimitIntervalSec=0