diff options
author | Lukas Nykryn <lnykryn@redhat.com> | 2013-07-29 15:17:48 +0200 |
---|---|---|
committer | Lukas Nykryn <lnykryn@redhat.com> | 2013-08-19 14:11:00 +0200 |
commit | 28836ffca41162cdcabf518a280c31b641a0fab2 (patch) | |
tree | d7ce50a9a7e4fb6c1c1057e84cd2720b3fb7df73 /ppp | |
parent | 975c5407b0125b27c6fe61520d1d348569f10b50 (diff) | |
download | initscripts-28836ffca41162cdcabf518a280c31b641a0fab2.tar initscripts-28836ffca41162cdcabf518a280c31b641a0fab2.tar.gz initscripts-28836ffca41162cdcabf518a280c31b641a0fab2.tar.bz2 initscripts-28836ffca41162cdcabf518a280c31b641a0fab2.tar.xz initscripts-28836ffca41162cdcabf518a280c31b641a0fab2.zip |
consider IPV6INIT undefined as YES
Diffstat (limited to 'ppp')
-rw-r--r-- | ppp/ipv6-up | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppp/ipv6-up b/ppp/ipv6-up index 54219e43..059afec6 100644 --- a/ppp/ipv6-up +++ b/ppp/ipv6-up @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # ipv6-up # @@ -50,8 +50,8 @@ CONFIG=$LOGDEVICE [ -f "$CONFIG" ] || CONFIG=ifcfg-$CONFIG source_config -# Test whether IPv6 configuration is enabled for this interface, else stop -[ "$IPV6INIT" = "yes" ] || exit 0 +# Test whether IPv6 configuration is disabled for this interface +[[ "$IPV6INIT" = [nN0]* ]] && exit 0 [ -f /etc/sysconfig/network-scripts/network-functions-ipv6 ] || exit 1 . /etc/sysconfig/network-scripts/network-functions-ipv6 |