blob: a58ba61d10dfef18ea28e44051414624dc8d54c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/usr/bin/env python3
import re
import os
import sys
import argparse
from vyos.util import call
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()
debug = False
# Multiple arguments work like logical OR
try:
for r in args.regex:
if re.fullmatch(r, args.value):
sys.exit(0)
except Exception as exn:
if debug:
print(exn)
else:
pass
try:
for cmd in args.exec:
cmd = "{0} {1}".format(cmd, args.value)
if debug:
print(cmd)
res = call(cmd)
if res == 0:
sys.exit(0)
except Exception as exn:
if debug:
print(exn)
else:
pass
sys.exit(1)
|