mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-11-10 07:21:59 +05:30
33 lines
873 B
Desktop File
33 lines
873 B
Desktop File
# naxalnet systemd service
|
|
# See man:systemd.service(5) and man:systemd.unit(5)
|
|
# before editing this file.
|
|
[Unit]
|
|
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
|
|
|
|
[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
|
|
ExecStart=/usr/bin/naxalnet
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|