1
0
Fork 0
mirror of https://github.com/pi-hole/pi-hole.git synced 2025-04-18 05:10:13 +00:00

check NetworkManager status prior to using the cli ()

Closes 

Signed-off-by: bcambl <blayne@blaynecampbell.com>
This commit is contained in:
bcambl 2017-12-07 21:33:31 -06:00
parent 472f7725c7
commit f89d69b081

View file

@ -709,8 +709,8 @@ setStaticIPv4() {
}> "${IFCFG_FILE}"
# Use ip to immediately set the new address
ip addr replace dev "${PIHOLE_INTERFACE}" "${IPV4_ADDRESS}"
# If NetworkMangler command line interface exists,
if command -v nmcli &> /dev/null;then
# If NetworkMangler command line interface exists and ready to mangle,
if command -v nmcli &> /dev/null && nmcli general status &> /dev/null; then
# Tell NetworkManagler to read our new sysconfig file
nmcli con load "${IFCFG_FILE}" > /dev/null
fi