mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-11-27 01:02:15 +05:30
33 lines
863 B
Desktop File
33 lines
863 B
Desktop File
# The naxalnet systemd service
|
|
# See man:systemd.service(5) and man:systemd.unit(5)
|
|
# before editing this file.
|
|
[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 and wpa_supplicant if already running
|
|
Conflicts=NetworkManager.service
|
|
Conflicts=wpa_supplicant.service
|
|
# This stops networkmanager and wpa_supplicant when naxalnet is enabled
|
|
After=NetworkManager.service
|
|
After=wpa_supplicant.service
|
|
|
|
[Service]
|
|
Type=notify
|
|
NotifyAccess=all
|
|
Restart=on-failure
|
|
RestartSec=2sec
|
|
ExecStart=/usr/bin/naxalnet --systemd
|
|
KillSignal=SIGINT
|
|
# naxalnet already logs to systemd journal so we don't need
|
|
# stdout and stderr.
|
|
StandardOutput=null
|
|
StandardError=null
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|