Adding upstream version 2020.10.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
82f9f8c024
commit
51333c7ef4
216 changed files with 127737 additions and 0 deletions
18
scripts/verify_json.py
Normal file
18
scripts/verify_json.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import json
|
||||
import sys
|
||||
|
||||
KEYS = set(['snitch_map', 'action_map', 'version'])
|
||||
|
||||
with open(sys.argv[1]) as f:
|
||||
try:
|
||||
js = json.load(f)
|
||||
if set(js.keys()) == KEYS:
|
||||
sys.exit(0)
|
||||
else:
|
||||
print("json keys %s are not correct" % js.keys())
|
||||
sys.exit(1)
|
||||
except Exception as e:
|
||||
print("error parsing json:", e)
|
||||
sys.exit(1)
|
Loading…
Add table
Add a link
Reference in a new issue