diff options
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 |