diff options
author | Daniil Baturin <daniil.baturin@vyatta.com> | 2013-06-10 13:11:06 -0700 |
---|---|---|
committer | Daniil Baturin <daniil.baturin@vyatta.com> | 2013-06-10 13:11:06 -0700 |
commit | 75e5effa3886e086aeb3a10c3c8fea37b50922f2 (patch) | |
tree | c24d8f482a6b153fd89d6bfbb0ccca21663bcc3a /templates/system/ipv6/disable-forwarding/node.def | |
parent | d4d848d9e27b84613e0d05cf4c29ab2997a85968 (diff) | |
download | vyatta-cfg-system-75e5effa3886e086aeb3a10c3c8fea37b50922f2.tar.gz vyatta-cfg-system-75e5effa3886e086aeb3a10c3c8fea37b50922f2.zip |
Bug #8711: fix typos in conditionals.
Diffstat (limited to 'templates/system/ipv6/disable-forwarding/node.def')
-rw-r--r-- | templates/system/ipv6/disable-forwarding/node.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/system/ipv6/disable-forwarding/node.def b/templates/system/ipv6/disable-forwarding/node.def index eefb8328..5e689c5b 100644 --- a/templates/system/ipv6/disable-forwarding/node.def +++ b/templates/system/ipv6/disable-forwarding/node.def @@ -25,7 +25,7 @@ delete: for i in * ; do if [[ "$i" == "default" ]] || [[ "$i" == "all" ]] || - [[ ! -d "$i" ]; then + [[ ! -d "$i" ]]; then continue fi if [[ -e /var/run/vyatta/ipv6_no_fwd.$i ]]; then @@ -40,7 +40,7 @@ delete: running=$(pgrep -n radvd) if [[ $running -eq 0 ]] && [[ -e /etc/radvd.conf ]] && - [[ -x /etc/init.d/radvd ]; then + [[ -x /etc/init.d/radvd ]]; then /etc/init.d/radvd start fi |