parent
3632be079b
commit
744c65939b
|
@ -373,6 +373,7 @@ for p in $(getargs ip=); do
|
||||||
do_static ;;
|
do_static ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
ret=$?
|
||||||
|
|
||||||
> /tmp/net.${netif}.up
|
> /tmp/net.${netif}.up
|
||||||
|
|
||||||
|
@ -380,7 +381,7 @@ for p in $(getargs ip=); do
|
||||||
dhcp|on|any|dhcp6)
|
dhcp|on|any|dhcp6)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if [ $? -eq 0 ]; then
|
if [ $ret -eq 0 ]; then
|
||||||
setup_net $netif
|
setup_net $netif
|
||||||
source_hook initqueue/online $netif
|
source_hook initqueue/online $netif
|
||||||
if [ -z "$manualup" ]; then
|
if [ -z "$manualup" ]; then
|
||||||
|
|
Loading…
Reference in New Issue