summaryrefslogtreecommitdiff
path: root/src/validators
diff options
context:
space:
mode:
authorMaxime THIEBAUT <46688461+0xThiebaut@users.noreply.github.com>2024-05-01 22:16:03 +0200
committerMaxime THIEBAUT <46688461+0xThiebaut@users.noreply.github.com>2024-05-12 10:36:34 +0200
commit549089a970e39d1ea09c10af5eaf8f696dd19d40 (patch)
treec50e8e4ce30a714d70d36434ae9e51028bb6d77a /src/validators
parent91c1a8556eedc9e9aa50d8bf415b37e53d52cb7d (diff)
downloadvyos-1x-549089a970e39d1ea09c10af5eaf8f696dd19d40.tar.gz
vyos-1x-549089a970e39d1ea09c10af5eaf8f696dd19d40.zip
suricata: T751: Initial support for suricata
Diffstat (limited to 'src/validators')
-rwxr-xr-xsrc/validators/port-range-exclude7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/validators/port-range-exclude b/src/validators/port-range-exclude
new file mode 100755
index 000000000..4c049e98f
--- /dev/null
+++ b/src/validators/port-range-exclude
@@ -0,0 +1,7 @@
+#!/bin/sh
+arg="$1"
+if [ "${arg:0:1}" != "!" ]; then
+ exit 1
+fi
+path=$(dirname "$0")
+${path}/port-range "${arg:1}"