pybatmesh/naxalnet.service

31 lines
773 B
SYSTEMD
Raw Normal View History

# The 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]
Description=Setup mesh networks
Requires=systemd-networkd.service
Requires=iwd.service
Wants=systemd-resolved.service
After=iwd.service
After=systemd-networkd.service
After=systemd-resolved.service
# Stops NetworkManager if already running
Conflicts=NetworkManager.service
# This stops networkmanager and wpa_supplicant when naxalnet is enabled
After=NetworkManager.service
2021-05-10 11:45:42 +02:00
[Service]
Type=notify
NotifyAccess=all
Restart=on-failure
RestartSec=2sec
ExecStart=naxalnet --systemd
KillSignal=SIGINT
# naxalnet already logs to systemd journal so we don't need
# stdout and stderr.
StandardOutput=null
StandardError=null
2021-05-10 11:45:42 +02:00
[Install]
WantedBy=multi-user.target