diff options
author | Bill Nottingham <notting@redhat.com> | 2007-01-17 19:41:50 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2007-01-17 19:41:50 +0000 |
commit | adcc4226f5be5723c56a953eb5e81b295f471686 (patch) | |
tree | 10ddd851fb57bd08a800673f1a3fa05068c5f716 /sysconfig/network-scripts/ifup-ippp | |
parent | 52d87732faf849307b73817a3b93525d87cf8bb4 (diff) | |
download | initscripts-adcc4226f5be5723c56a953eb5e81b295f471686.tar initscripts-adcc4226f5be5723c56a953eb5e81b295f471686.tar.gz initscripts-adcc4226f5be5723c56a953eb5e81b295f471686.tar.bz2 initscripts-adcc4226f5be5723c56a953eb5e81b295f471686.tar.xz initscripts-adcc4226f5be5723c56a953eb5e81b295f471686.zip |
remove NETWORKING_IPV6
Diffstat (limited to 'sysconfig/network-scripts/ifup-ippp')
-rwxr-xr-x | sysconfig/network-scripts/ifup-ippp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sysconfig/network-scripts/ifup-ippp b/sysconfig/network-scripts/ifup-ippp index e17f0b62..628f8b0a 100755 --- a/sysconfig/network-scripts/ifup-ippp +++ b/sysconfig/network-scripts/ifup-ippp @@ -368,17 +368,15 @@ function addprovider() fi # Setup IPv6 - if [ "${NETWORKING_IPV6}" = "yes" ]; then - if [ "$IPV6INIT" = "yes" -a ! -z "$IPV6ADDR" ]; then + if [ "$IPV6INIT" = "yes" -a ! -z "$IPV6ADDR" ]; then # Native IPv6 use of device configured, check of encapsulation required if [ "$ENCAP" = "syncppp" ]; then echo $"Warning: ipppd (kernel 2.4.x and below) doesn't support IPv6 using encapsulation 'syncppp'" elif [ "$ENCAP" = "rawip" ]; then echo $"Warning: link doesn't support IPv6 using encapsulation 'rawip'" fi - fi - /etc/sysconfig/network-scripts/ifup-ipv6 $CONFIG fi + /etc/sysconfig/network-scripts/ifup-ipv6 $CONFIG } addprovider || exit 1 |