Check by [ $? -eq 0 ] rather than $?.
Reviewed by: mtm
This commit is contained in:
parent
73291d87a7
commit
1f87ba73dd
@ -157,7 +157,7 @@ clone_up()
|
||||
_list=
|
||||
for ifn in ${cloned_interfaces}; do
|
||||
ifconfig ${ifn} create
|
||||
if $? ; then
|
||||
if [ $? -eq 0 ]; then
|
||||
_list="${_list}${_prefix}${ifn}"
|
||||
[ -z "$_prefix" ] && _prefix=' '
|
||||
fi
|
||||
@ -174,7 +174,7 @@ clone_down()
|
||||
_list=
|
||||
for ifn in ${cloned_interfaces}; do
|
||||
ifconfig ${ifn} destroy
|
||||
if $? ; then
|
||||
if [ $? -eq 0 ]; then
|
||||
_list="${_list}${_prefix}${ifn}"
|
||||
[ -z "$_prefix" ] && _prefix=' '
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user