udhcpc: run dhcp hotplug events after dns has been set
SVN-Revision: 15095
This commit is contained in:
parent
39cb0be665
commit
6a50bf433a
1 changed files with 7 additions and 7 deletions
|
@ -58,12 +58,6 @@ case "$1" in
|
|||
[ -n "$dns" ] && \
|
||||
echo -n > "${RESOLV_CONF}.tmp"
|
||||
|
||||
if [ "$1" = "renew" ]; then
|
||||
hotplug_event update
|
||||
else
|
||||
hotplug_event ifup
|
||||
fi
|
||||
|
||||
[ -n "$dns" ] && {
|
||||
[ -s "${RESOLV_CONF}.tmp" ] || {
|
||||
for i in $dns ; do
|
||||
|
@ -77,6 +71,12 @@ case "$1" in
|
|||
mv "${RESOLV_CONF}.tmp" "$RESOLV_CONF"
|
||||
}
|
||||
|
||||
if [ "$1" = "renew" ]; then
|
||||
hotplug_event update
|
||||
else
|
||||
hotplug_event ifup
|
||||
fi
|
||||
|
||||
# user rules
|
||||
[ -f /etc/udhcpc.user ] && . /etc/udhcpc.user
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue