summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2018-05-16 03:23:20 +0200
committerDaniil Baturin <daniil@baturin.org>2018-05-16 03:23:20 +0200
commita41145f0179c3f18234d613e41f6c5de9dcf006f (patch)
treef41ba1b1921f8228c3af8cbc7a6f1feadd30fb5d /src
parent2a477e6bfc80cf7994ad0873b80ca36cab06a456 (diff)
downloadvyos-1x-a41145f0179c3f18234d613e41f6c5de9dcf006f.tar.gz
vyos-1x-a41145f0179c3f18234d613e41f6c5de9dcf006f.zip
T643: correct support for regex validators.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/helpers/validate-value.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/helpers/validate-value.py b/src/helpers/validate-value.py
index 2625663a2..e49bfb6f4 100755
--- a/src/helpers/validate-value.py
+++ b/src/helpers/validate-value.py
@@ -8,6 +8,7 @@ import argparse
parser = argparse.ArgumentParser()
parser.add_argument('--regex', action='append')
parser.add_argument('--exec', action='append')
+parser.add_argument('--value', action='store')
args = parser.parse_args()
@@ -27,6 +28,7 @@ except Exception as exn:
try:
for cmd in args.exec:
+ cmd = "{0} {1}".format(cmd, args.value)
if debug:
print(cmd)
res = os.system(cmd)