2021-08-16 18:56:17 +05:30
|
|
|
# The naxalnet systemd service
|
2021-07-26 15:58:50 +05:30
|
|
|
# See man:systemd.service(5) and man:systemd.unit(5)
|
|
|
|
# before editing this file.
|
2021-05-10 15:15:42 +05:30
|
|
|
[Unit]
|
2021-08-16 18:56:17 +05:30
|
|
|
Description=Setup mesh networks
|
2021-06-06 11:25:37 +05:30
|
|
|
Requires=systemd-networkd.service
|
|
|
|
Requires=iwd.service
|
|
|
|
Wants=systemd-resolved.service
|
|
|
|
After=iwd.service
|
2021-08-25 15:52:46 +05:30
|
|
|
After=systemd-networkd.service
|
|
|
|
After=systemd-resolved.service
|
2021-06-06 11:25:37 +05:30
|
|
|
# Stops NetworkManager and wpa_supplicant if already running
|
|
|
|
Conflicts=NetworkManager.service
|
|
|
|
Conflicts=wpa_supplicant.service
|
2021-08-16 21:29:27 +05:30
|
|
|
# This stops networkmanager and wpa_supplicant when naxalnet is enabled
|
2021-06-06 11:25:37 +05:30
|
|
|
After=NetworkManager.service
|
|
|
|
After=wpa_supplicant.service
|
2021-05-10 15:15:42 +05:30
|
|
|
|
|
|
|
[Service]
|
2021-09-07 11:19:14 +05:30
|
|
|
Type=notify
|
|
|
|
NotifyAccess=all
|
2021-06-10 09:15:58 +05:30
|
|
|
Restart=on-failure
|
2021-07-26 15:58:50 +05:30
|
|
|
RestartSec=2sec
|
2021-09-06 14:57:54 +05:30
|
|
|
ExecStart=/usr/bin/naxalnet --systemd
|
2021-09-10 11:42:18 +05:30
|
|
|
# Reload systemd-networkd after naxalnet signals it is ready
|
2021-09-27 10:00:59 +05:30
|
|
|
#ExecStartPost=/usr/bin/networkctl reload
|
2021-09-10 11:42:18 +05:30
|
|
|
# When naxalnet exits, delete all files starting
|
|
|
|
# with mesh.* in /run/systemd/network
|
2021-09-07 11:19:14 +05:30
|
|
|
ExecStopPost=/usr/bin/find /run/systemd/network -type f -delete -name "mesh.*"
|
2021-09-10 11:42:18 +05:30
|
|
|
# Then delete the two interfaces created...
|
2021-08-16 18:56:17 +05:30
|
|
|
ExecStopPost=/usr/bin/networkctl delete bridge0 bat0
|
2021-08-18 17:33:46 +05:30
|
|
|
# ... and reload the configuration files.
|
|
|
|
ExecStopPost=/usr/bin/networkctl reload
|
2021-09-07 11:19:14 +05:30
|
|
|
# naxalnet already logs to systemd journal so we don't need
|
|
|
|
# stdout and stderr.
|
|
|
|
StandardOutput=null
|
|
|
|
StandardError=null
|
2021-05-10 15:15:42 +05:30
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|