pybatmesh/naxalnet.service

33 lines
873 B
SYSTEMD
Raw Normal View History

# naxalnet systemd service
# See man:systemd.service(5) and man:systemd.unit(5)
# before editing this file.
2021-05-10 11:45:42 +02:00
[Unit]
2021-05-22 11:44:16 +02:00
Description=Naxalnet
Requires=systemd-networkd.service
Requires=iwd.service
Wants=systemd-resolved.service
# naxalnet does not reload networkd, so networkd
# should be started only afer naxalnet exits
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 11:45:42 +02:00
[Service]
Type=oneshot
RemainAfterExit=yes
Restart=on-failure
# Probably not needed now
RestartSec=2sec
# IWD takes some time to find devices.
# Without the delay, naxalnet could not detect the second
# device while testing.
ExecStartPre=/usr/bin/sleep 2
2021-05-22 11:44:16 +02:00
ExecStart=/usr/bin/naxalnet
2021-05-10 11:45:42 +02:00
[Install]
WantedBy=multi-user.target