diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-12-16 15:49:52 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-12-16 15:49:52 +0100 |
commit | 63850687f0fe5bc07281fb1a22d222ba2f2dd60f (patch) | |
tree | 01433c9fa1ec51448c6a9d3097952a838d7bed2c /src/migration-scripts | |
parent | 26e1a5c2da4f78a94655fd9434ad0cc604735dca (diff) | |
parent | e734b846ec53f9950da562ea27676f63ac5c1599 (diff) | |
download | vyos-1x-63850687f0fe5bc07281fb1a22d222ba2f2dd60f.tar.gz vyos-1x-63850687f0fe5bc07281fb1a22d222ba2f2dd60f.zip |
Merge branch 'current' into crux
Diffstat (limited to 'src/migration-scripts')
-rwxr-xr-x | src/migration-scripts/webproxy/1-to-2 | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/migration-scripts/webproxy/1-to-2 b/src/migration-scripts/webproxy/1-to-2 new file mode 100755 index 000000000..4acabba3e --- /dev/null +++ b/src/migration-scripts/webproxy/1-to-2 @@ -0,0 +1,39 @@ +#!/usr/bin/env python3 + +# migrate old style `webproxy proxy-bypass 1.2.3.4/24` +# to new style `webproxy whitelist destination-address 1.2.3.4/24` + +import sys + +from vyos.configtree import ConfigTree + +if len(sys.argv) < 1: + print("Must specify file name!") + sys.exit(1) + +file_name = sys.argv[1] + +with open(file_name, 'r') as f: + config_file = f.read() + +config = ConfigTree(config_file) + +cfg_webproxy_base = ['service', 'webproxy'] +if not config.exists(cfg_webproxy_base): + # Nothing to do + sys.exit(0) +else: + bypass_addresses = config.return_values(cfg_webproxy_base + ['proxy-bypass']) + # delete old configuration node + config.delete(cfg_webproxy_base + ['proxy-bypass']) + for bypass_address in bypass_addresses: + # add data to new configuration node + config.set(cfg_webproxy_base + ['whitelist', 'destination-address'], value=bypass_address, replace=False) + + # save updated configuration + try: + with open(file_name, 'w') as f: + f.write(config.to_string()) + except OSError as e: + print("Failed to save the modified config: {}".format(e)) + sys.exit(1) |