diff options
author | Bill Nottingham <notting@redhat.com> | 2012-08-02 15:13:40 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2012-08-06 15:20:27 -0400 |
commit | 929b86328048d17f30f9be1ec2161b6486827e7f (patch) | |
tree | 099590b76aab26e90c5b3360deb220e1f8f99427 /rc.d/init.d/network | |
parent | 654187448e2b29ee2b5c8b757a37420e1ce0257b (diff) | |
download | initscripts-929b86328048d17f30f9be1ec2161b6486827e7f.tar initscripts-929b86328048d17f30f9be1ec2161b6486827e7f.tar.gz initscripts-929b86328048d17f30f9be1ec2161b6486827e7f.tar.bz2 initscripts-929b86328048d17f30f9be1ec2161b6486827e7f.tar.xz initscripts-929b86328048d17f30f9be1ec2161b6486827e7f.zip |
Drop more unused functions, and drop old s-c-n profile support directories.
The profile support itself was removed a while ago.
Diffstat (limited to 'rc.d/init.d/network')
-rwxr-xr-x | rc.d/init.d/network | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 359dffa2..9a6517a3 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -130,11 +130,6 @@ case "$1" in is_available $i continue fi - # If we're in confirmation mode, get user confirmation. - if [ -f /var/run/confirm ]; then - confirm $i - test $? = 1 && continue - fi action $"Bringing up interface $i: " ./ifup $i boot [ $? -ne 0 ] && rc=1 done @@ -142,11 +137,6 @@ case "$1" in # Bring up xDSL and VPN interfaces for i in $vlaninterfaces $bridgeinterfaces $xdslinterfaces $vpninterfaces ; do if ! LANG=C grep -EL "^ONBOOT=['\"]?[Nn][Oo]['\"]?" ifcfg-$i >/dev/null 2>&1 ; then - # If we're in confirmation mode, get user confirmation. - if [ -f /var/run/confirm ]; then - confirm $i - test $? = 1 && continue - fi action $"Bringing up interface $i: " ./ifup $i boot [ $? -ne 0 ] && rc=1 fi |