1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

ifconfig(8) can take only one interface at a time.

This commit is contained in:
Pawel Jakub Dawidek 2008-10-30 20:24:25 +00:00
parent 7f33c7dd6f
commit 3239bc5923
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=184485

View File

@ -141,7 +141,9 @@ network_common()
esac
echo "${_str} Network:${_ok}."
if [ -z "${rc_quiet}" ]; then
/sbin/ifconfig ${_ok}
for ifn in ${_ok}; do
/sbin/ifconfig ${ifn}
done
fi
fi