diff options
author | Stig Thormodsrud <stig@io.vyatta.com> | 2009-02-24 17:23:16 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@io.vyatta.com> | 2009-02-24 17:23:16 -0800 |
commit | 9a8c3eeb15e12160d9dd9dbcda8f6e4fa26126ba (patch) | |
tree | 178473cfbec8f3f2857a60fac436cdc9386c06a1 /templates/firewall/ipv6-modify/node.def | |
parent | 7505fdcd0feca189b759306301cac445ec44d525 (diff) | |
download | vyatta-cfg-firewall-9a8c3eeb15e12160d9dd9dbcda8f6e4fa26126ba.tar.gz vyatta-cfg-firewall-9a8c3eeb15e12160d9dd9dbcda8f6e4fa26126ba.zip |
Limit firewall name to 29 characters since that is the iptables/ip6tables
limit.
Diffstat (limited to 'templates/firewall/ipv6-modify/node.def')
-rw-r--r-- | templates/firewall/ipv6-modify/node.def | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/firewall/ipv6-modify/node.def b/templates/firewall/ipv6-modify/node.def index c0c324d..d49d884 100644 --- a/templates/firewall/ipv6-modify/node.def +++ b/templates/firewall/ipv6-modify/node.def @@ -2,6 +2,12 @@ tag: type: txt +syntax:expression: exec " \ + if [ `echo -n $VAR(@) | wc -c` -gt 29 ]; then \ + echo firewall ipv6-modify must be 29 characters or less; \ + exit 1 ; \ + fi ; " + syntax:expression: pattern $VAR(@) "^[^-]" ; "Firewall rule set name cannot start with \"-\"" help: Set IPv6 modify rule set name |