summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
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..c71c23d 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..e92c286 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..14d8501 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..5920c9b 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 ; "