diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2021-05-25 23:17:16 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 22:17:16 +0200 |
commit | 654c8cad2daaf84a07e4664d2c0469a863a46bdc (patch) | |
tree | 9d917366bd60075950494a79a6864a9811fd70b6 /src/validators/ipv6-exclude | |
parent | d12f945d24fd9098e69620d84699b61bd7838c99 (diff) | |
download | vyos-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-exclude')
-rwxr-xr-x | src/validators/ipv6-exclude | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/validators/ipv6-exclude b/src/validators/ipv6-exclude new file mode 100755 index 000000000..893eeab09 --- /dev/null +++ b/src/validators/ipv6-exclude @@ -0,0 +1,7 @@ +#!/bin/sh +arg="$1" +if [ "${arg:0:1}" != "!" ]; then + exit 1 +fi +path=$(dirname "$0") +${path}/ipv6 "${arg:1}" |