summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@io.vyatta.com>2009-02-25 14:34:10 -0800
committerStig Thormodsrud <stig@io.vyatta.com>2009-02-25 14:34:10 -0800
commite95c589fc2782077915b0c388eef340b14c4de80 (patch)
treee426b03b26a5cd4d67dd5837240330ed4afab2c0 /templates
parentb40f9494b98f625c8725f1d40af1983fe44a91e7 (diff)
downloadvyatta-cfg-firewall-e95c589fc2782077915b0c388eef340b14c4de80.tar.gz
vyatta-cfg-firewall-e95c589fc2782077915b0c388eef340b14c4de80.zip
Use single quote around $VAR(@).
Diffstat (limited to 'templates')
-rw-r--r--templates/firewall/ipv6-modify/node.def2
-rw-r--r--templates/firewall/ipv6-name/node.def2
-rw-r--r--templates/firewall/modify/node.def2
-rw-r--r--templates/firewall/name/node.def2
4 files changed, 4 insertions, 4 deletions
diff --git a/templates/firewall/ipv6-modify/node.def b/templates/firewall/ipv6-modify/node.def
index d49d884..e1d41bb 100644
--- a/templates/firewall/ipv6-modify/node.def
+++ b/templates/firewall/ipv6-modify/node.def
@@ -3,7 +3,7 @@ tag:
type: txt
syntax:expression: exec " \
- if [ `echo -n $VAR(@) | wc -c` -gt 29 ]; then \
+ if [ `echo -n '$VAR(@)' | wc -c` -gt 29 ]; then \
echo firewall ipv6-modify must be 29 characters or less; \
exit 1 ; \
fi ; "
diff --git a/templates/firewall/ipv6-name/node.def b/templates/firewall/ipv6-name/node.def
index 7a6dd1b..e90b049 100644
--- a/templates/firewall/ipv6-name/node.def
+++ b/templates/firewall/ipv6-name/node.def
@@ -3,7 +3,7 @@ tag:
type: txt
syntax:expression: exec " \
- if [ `echo -n $VAR(@) | wc -c` -gt 29 ]; then \
+ if [ `echo -n '$VAR(@)' | wc -c` -gt 29 ]; then \
echo firewall ipv6-name must be 29 characters or less; \
exit 1 ; \
fi ; "
diff --git a/templates/firewall/modify/node.def b/templates/firewall/modify/node.def
index 48a25f0..1b07f5d 100644
--- a/templates/firewall/modify/node.def
+++ b/templates/firewall/modify/node.def
@@ -3,7 +3,7 @@ tag:
type: txt
syntax:expression: exec " \
- if [ `echo -n $VAR(@) | wc -c` -gt 29 ]; then \
+ if [ `echo -n '$VAR(@)' | wc -c` -gt 29 ]; then \
echo firewall modify must be 29 characters or less; \
exit 1 ; \
fi ; "
diff --git a/templates/firewall/name/node.def b/templates/firewall/name/node.def
index 71d4441..7c95d03 100644
--- a/templates/firewall/name/node.def
+++ b/templates/firewall/name/node.def
@@ -3,7 +3,7 @@ tag:
type: txt
syntax:expression: exec " \
- if [ `echo -n $VAR(@) | wc -c` -gt 29 ]; then \
+ if [ `echo -n '$VAR(@)' | wc -c` -gt 29 ]; then \
echo firewall name must be 29 characters or less; \
exit 1 ; \
fi ; "