interfaces: background configd reconfigure; closes #2267

This commit is contained in:
Franco Fichtner 2019-03-26 21:20:36 +01:00
parent 55641d204d
commit e9f2862bd7
2 changed files with 3 additions and 3 deletions

View File

@ -54,6 +54,6 @@ elif [ "${AF}" = "inet6" ]; then
rm -f /tmp/${IF}_routerv6 /tmp/${IF}upv6 /tmp/${IF}_ipv6
fi
/usr/local/opnsense/service/configd_ctl.py dns reload
daemon -f /usr/local/opnsense/service/configd_ctl.py dns reload
exit 0

View File

@ -32,7 +32,7 @@ if [ "${2}" = "inet" ]; then
fi
fi
/usr/local/opnsense/service/configd_ctl.py interface newip ${1}
daemon -f /usr/local/opnsense/service/configd_ctl.py interface newip ${1}
elif [ "${2}" = "inet6" ]; then
# let the configuration system know that the ipv6 has changed.
echo ${4} |cut -d% -f1 > /tmp/${1}_routerv6
@ -56,7 +56,7 @@ elif [ "${2}" = "inet6" ]; then
fi
fi
/usr/local/opnsense/service/configd_ctl.py interface newipv6 ${1}
daemon -f /usr/local/opnsense/service/configd_ctl.py interface newipv6 ${1}
fi
exit 0