diff options
author | Stig Thormodsrud <stig@io.vyatta.com> | 2009-02-25 14:18:56 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@io.vyatta.com> | 2009-02-25 14:18:56 -0800 |
commit | 6f9e3484b4013092ce6390b53fe67f9133e2684d (patch) | |
tree | b8197edeb00fb71b06c3b1810ed125a66032eeb5 /templates/interfaces/bridge | |
parent | 57cbd2262851002955809a2b423ea0587e4b4d55 (diff) | |
download | vyatta-cfg-quagga-6f9e3484b4013092ce6390b53fe67f9133e2684d.tar.gz vyatta-cfg-quagga-6f9e3484b4013092ce6390b53fe67f9133e2684d.zip |
Change from double quote to single quote around $VAR(@).
Diffstat (limited to 'templates/interfaces/bridge')
4 files changed, 4 insertions, 4 deletions
diff --git a/templates/interfaces/bridge/node.tag/ip/ospf/authentication/md5/key-id/node.tag/md5-key/node.def b/templates/interfaces/bridge/node.tag/ip/ospf/authentication/md5/key-id/node.tag/md5-key/node.def index e007b689..5efd3ef7 100644 --- a/templates/interfaces/bridge/node.tag/ip/ospf/authentication/md5/key-id/node.tag/md5-key/node.def +++ b/templates/interfaces/bridge/node.tag/ip/ospf/authentication/md5/key-id/node.tag/md5-key/node.def @@ -1,7 +1,7 @@ type: txt help: Set md5 key syntax:expression: exec " \ - if [ `echo -n $VAR(@) | wc -c` -gt 16 ]; then \ + if [ `echo -n '$VAR(@)' | wc -c` -gt 16 ]; then \ echo MD5 key must be 16 characters or less ; \ exit 1 ; \ fi ; " diff --git a/templates/interfaces/bridge/node.tag/ip/ospf/authentication/plaintext-password/node.def b/templates/interfaces/bridge/node.tag/ip/ospf/authentication/plaintext-password/node.def index 95215c89..9e522952 100644 --- a/templates/interfaces/bridge/node.tag/ip/ospf/authentication/plaintext-password/node.def +++ b/templates/interfaces/bridge/node.tag/ip/ospf/authentication/plaintext-password/node.def @@ -1,7 +1,7 @@ type: txt help: Configure plain text password syntax:expression: exec " \ - if [ `echo -n $VAR(@) | wc -c` -gt 8 ]; then \ + if [ `echo -n '$VAR(@)' | wc -c` -gt 8 ]; then \ echo Password must be 8 characters or less ; \ exit 1 ; \ fi ; " diff --git a/templates/interfaces/bridge/node.tag/ip/rip/authentication/md5/node.tag/password/node.def b/templates/interfaces/bridge/node.tag/ip/rip/authentication/md5/node.tag/password/node.def index bcebd5ab..02275ea7 100644 --- a/templates/interfaces/bridge/node.tag/ip/rip/authentication/md5/node.tag/password/node.def +++ b/templates/interfaces/bridge/node.tag/ip/rip/authentication/md5/node.tag/password/node.def @@ -1,7 +1,7 @@ type: txt help: Set authentication password syntax:expression: exec " \ - if [ `echo -n $VAR(@) | wc -c` -gt 16 ]; then \ + if [ `echo -n '$VAR(@)' | wc -c` -gt 16 ]; then \ echo MD5 key must be 16 characters or less ; \ exit 1 ; \ fi ; " diff --git a/templates/interfaces/bridge/node.tag/ip/rip/authentication/plaintext-password/node.def b/templates/interfaces/bridge/node.tag/ip/rip/authentication/plaintext-password/node.def index e21e5878..cdeb2523 100644 --- a/templates/interfaces/bridge/node.tag/ip/rip/authentication/plaintext-password/node.def +++ b/templates/interfaces/bridge/node.tag/ip/rip/authentication/plaintext-password/node.def @@ -1,7 +1,7 @@ type: txt help: Set plain text password syntax:expression: exec " \ - if [ `echo -n $VAR(@) | wc -c` -gt 16 ]; then \ + if [ `echo -n '$VAR(@)' | wc -c` -gt 16 ]; then \ echo Password must be 16 characters or less ; \ exit 1 ; \ fi ; " |