diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-09-30 06:55:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 06:55:35 +0300 |
commit | 989ff045aa735bc91ae936aca549e101f6f4d9ed (patch) | |
tree | 7ec6a28dde81e8b050c0b914d67718dea4216d2c /src/validators/numeric-exclude | |
parent | b37b0fceb4915fa1e563e34b1e3af1040f461d58 (diff) | |
parent | 2ae3de0848dee0f3da28727fc30e2beeecd412e1 (diff) | |
download | vyos-1x-989ff045aa735bc91ae936aca549e101f6f4d9ed.tar.gz vyos-1x-989ff045aa735bc91ae936aca549e101f6f4d9ed.zip |
Merge pull request #2314 from nicolas-fort/T5616
T5616: firewall and policy: add option to be able to match firewall marks
Diffstat (limited to 'src/validators/numeric-exclude')
-rw-r--r-- | src/validators/numeric-exclude | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/validators/numeric-exclude b/src/validators/numeric-exclude new file mode 100644 index 000000000..676a240b6 --- /dev/null +++ b/src/validators/numeric-exclude @@ -0,0 +1,8 @@ +#!/bin/sh +path=$(dirname "$0") +num="${@: -1}" +if [ "${num:0:1}" != "!" ]; then + ${path}/numeric $@ +else + ${path}/numeric ${@:1:$#-1} ${num:1} +fi |