blob: 8b50f7c5d71f97f26d9c00578143b30ab6ca9e9c (
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
|
#!/usr/bin/python3
import sys
from signal import signal, SIGPIPE, SIG_DFL
from vyos.configtree import ConfigTree
signal(SIGPIPE,SIG_DFL)
config_string = None
if (len(sys.argv) == 1):
# If no argument given, act as a pipe
config_string = sys.stdin.read()
else:
file_name = sys.argv[1]
try:
with open(file_name, 'r') as f:
config_string = f.read()
except OSError as e:
print("Could not read config file {0}: {1}".format(file_name, e), file=sys.stderr)
try:
config = ConfigTree(config_string)
commands = config.to_commands()
except ValueError as e:
print("Could not parse the config file: {0}".format(e), file=sys.stderr)
sys.exit(1)
print(commands)
|