mirror of
https://github.com/pi-hole/pi-hole
synced 2024-12-22 14:58:08 +00:00
check NetworkManager status prior to using the cli (#1653)
Closes #1653 Signed-off-by: bcambl <blayne@blaynecampbell.com>
This commit is contained in:
parent
472f7725c7
commit
f89d69b081
@ -709,8 +709,8 @@ setStaticIPv4() {
|
|||||||
}> "${IFCFG_FILE}"
|
}> "${IFCFG_FILE}"
|
||||||
# Use ip to immediately set the new address
|
# Use ip to immediately set the new address
|
||||||
ip addr replace dev "${PIHOLE_INTERFACE}" "${IPV4_ADDRESS}"
|
ip addr replace dev "${PIHOLE_INTERFACE}" "${IPV4_ADDRESS}"
|
||||||
# If NetworkMangler command line interface exists,
|
# If NetworkMangler command line interface exists and ready to mangle,
|
||||||
if command -v nmcli &> /dev/null;then
|
if command -v nmcli &> /dev/null && nmcli general status &> /dev/null; then
|
||||||
# Tell NetworkManagler to read our new sysconfig file
|
# Tell NetworkManagler to read our new sysconfig file
|
||||||
nmcli con load "${IFCFG_FILE}" > /dev/null
|
nmcli con load "${IFCFG_FILE}" > /dev/null
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user