blob: 6752e116d71150aba176999f6cde5e70e24289bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
services_dir="/home/makefu/r/services"
def add_services(nodes):
for k,v in nodes.items():
n = nodes[k]
try:
with open("{0}/{1}".format(services_dir,k)) as f:
n["services"] = []
for line in f.readlines():
n["services"].append(line.strip())
except Exception as e:
n["services"] = ["Error: No Service File!"]
return nodes
if __name__ == "__main__":
import json,sys
nodes = add_services(json.load(sys.stdin))
print (json.dumps(nodes,indent=4))
# vim: set expandtab:ts=4:sw=4
|