use full path within check_gateway script
This commit is contained in:
parent
68ce6b91d7
commit
32a3802cba
|
@ -23,12 +23,12 @@ OLD_STATE="$(cat $MESH/gw_mode)"
|
|||
# Check whether gateway modus has been deactivated
|
||||
if [ "$NEW_STATE" == "off" ]; then
|
||||
# Shutdown DHCP server to prevent renewal of leases
|
||||
service isc-dhcp-server stop
|
||||
/usr/sbin/service isc-dhcp-server stop
|
||||
fi
|
||||
|
||||
# Check whether gateway modus has been activated
|
||||
if [ "$NEW_STATE" == "server" ]; then
|
||||
# Restart DHCP server and radvd daemon
|
||||
service isc-dhcp-server start
|
||||
# Restart DHCP server
|
||||
/usr/sbin/service isc-dhcp-server start
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue