as I just noticed the new rocknet does not start interfaces automatically. (pointed out by clifford ;) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1990 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
@ -7,6 +7,7 @@
- Benjamin Schieder: hand-tuned dvgrab's priority
- Sebastian Jaenicke: update ethereal
- Andreas V. Meier: two tiny fixes for network.init
a tiny auto interface fix for rocknet_module_base.sh
*) 2003-12-13 (2.0.0-rc3 - 2.0.0-rc4)
@ -33,7 +33,7 @@ public_interface() {
fi
if [ "$ignore" = 0 ]; then
if [ "$if" = "auto" ]; then
if [ "$interface" = "auto" ]; then
ignore=1
for x in "${auto_if[@]}"; do
[[ "$if" == $x ]] && ignore=0
xxxxxxxxxx