mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-12-25 09:39:45 +05:30
reduced 5s delay in the systemd service to 2s
This commit is contained in:
parent
b3710633cc
commit
19137faab3
@ -1,11 +1,15 @@
|
|||||||
|
# naxalnet systemd service
|
||||||
|
# See man:systemd.service(5) and man:systemd.unit(5)
|
||||||
|
# before editing this file.
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Naxalnet
|
Description=Naxalnet
|
||||||
Requires=systemd-networkd.service
|
Requires=systemd-networkd.service
|
||||||
Requires=iwd.service
|
Requires=iwd.service
|
||||||
Wants=systemd-resolved.service
|
Wants=systemd-resolved.service
|
||||||
|
# naxalnet does not reload networkd, so networkd
|
||||||
|
# should be started only afer naxalnet exits
|
||||||
Before=systemd-networkd.service
|
Before=systemd-networkd.service
|
||||||
After=iwd.service
|
After=iwd.service
|
||||||
|
|
||||||
# Stops NetworkManager and wpa_supplicant if already running
|
# Stops NetworkManager and wpa_supplicant if already running
|
||||||
Conflicts=NetworkManager.service
|
Conflicts=NetworkManager.service
|
||||||
Conflicts=wpa_supplicant.service
|
Conflicts=wpa_supplicant.service
|
||||||
@ -16,11 +20,12 @@ After=wpa_supplicant.service
|
|||||||
Type=oneshot
|
Type=oneshot
|
||||||
RemainAfterExit=yes
|
RemainAfterExit=yes
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
RestartSec=5sec
|
# Probably not needed now
|
||||||
|
RestartSec=2sec
|
||||||
# IWD takes some time to find devices.
|
# IWD takes some time to find devices.
|
||||||
# Without the sleep 5, naxalnet could not detect the second
|
# Without the delay, naxalnet could not detect the second
|
||||||
# device while testing.
|
# device while testing.
|
||||||
ExecStartPre=/usr/bin/sleep 5
|
ExecStartPre=/usr/bin/sleep 2
|
||||||
ExecStart=/usr/bin/naxalnet
|
ExecStart=/usr/bin/naxalnet
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
|
Loading…
Reference in New Issue
Block a user