2021-07-26 15:58:50 +05:30
|
|
|
# naxalnet systemd service
|
|
|
|
# See man:systemd.service(5) and man:systemd.unit(5)
|
|
|
|
# before editing this file.
|
2021-05-10 15:15:42 +05:30
|
|
|
[Unit]
|
2021-05-22 15:14:16 +05:30
|
|
|
Description=Naxalnet
|
2021-06-06 11:25:37 +05:30
|
|
|
Requires=systemd-networkd.service
|
|
|
|
Requires=iwd.service
|
|
|
|
Wants=systemd-resolved.service
|
2021-07-26 15:58:50 +05:30
|
|
|
# naxalnet does not reload networkd, so networkd
|
|
|
|
# should be started only afer naxalnet exits
|
2021-06-06 11:25:37 +05:30
|
|
|
Before=systemd-networkd.service
|
|
|
|
After=iwd.service
|
|
|
|
# Stops NetworkManager and wpa_supplicant if already running
|
|
|
|
Conflicts=NetworkManager.service
|
|
|
|
Conflicts=wpa_supplicant.service
|
|
|
|
After=NetworkManager.service
|
|
|
|
After=wpa_supplicant.service
|
2021-05-10 15:15:42 +05:30
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=oneshot
|
|
|
|
RemainAfterExit=yes
|
2021-06-10 09:15:58 +05:30
|
|
|
Restart=on-failure
|
2021-07-26 15:58:50 +05:30
|
|
|
# Probably not needed now
|
|
|
|
RestartSec=2sec
|
2021-06-15 14:00:48 +05:30
|
|
|
# IWD takes some time to find devices.
|
2021-07-26 15:58:50 +05:30
|
|
|
# Without the delay, naxalnet could not detect the second
|
2021-06-15 14:00:48 +05:30
|
|
|
# device while testing.
|
2021-07-26 15:58:50 +05:30
|
|
|
ExecStartPre=/usr/bin/sleep 2
|
2021-05-22 15:14:16 +05:30
|
|
|
ExecStart=/usr/bin/naxalnet
|
2021-05-10 15:15:42 +05:30
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|