summaryrefslogtreecommitdiff
path: root/src/validators/ipv6-range-exclude
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2021-05-25 23:17:16 +0300
committerGitHub <noreply@github.com>2021-05-25 22:17:16 +0200
commit654c8cad2daaf84a07e4664d2c0469a863a46bdc (patch)
tree9d917366bd60075950494a79a6864a9811fd70b6 /src/validators/ipv6-range-exclude
parentd12f945d24fd9098e69620d84699b61bd7838c99 (diff)
downloadvyos-1x-654c8cad2daaf84a07e4664d2c0469a863a46bdc.tar.gz
vyos-1x-654c8cad2daaf84a07e4664d2c0469a863a46bdc.zip
firewall: T3568: add XML definitions for firewall
Add XML for configuration mode firewall. Used for future rewriting it to Python style.
Diffstat (limited to 'src/validators/ipv6-range-exclude')
-rwxr-xr-xsrc/validators/ipv6-range-exclude7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/validators/ipv6-range-exclude b/src/validators/ipv6-range-exclude
new file mode 100755
index 000000000..912b55ae3
--- /dev/null
+++ b/src/validators/ipv6-range-exclude
@@ -0,0 +1,7 @@
+#!/bin/sh
+arg="$1"
+if [ "${arg:0:1}" != "!" ]; then
+ exit 1
+fi
+path=$(dirname "$0")
+${path}/ipv6-range "${arg:1}"