diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-12-07 15:00:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-07 15:00:59 +0100 |
commit | 2189e8eacc3d056a21cba8e8fb8ef32c0660ac09 (patch) | |
tree | ea7d55f1bececb8cfc09b9fe48cb216fea4941e4 | |
parent | 44c8175dc975c8a3b73bf14c71dd890d52f00e67 (diff) | |
parent | 9fd73cbcc25437169d1eaf627dd56009cb50d32b (diff) | |
download | vyos-1x-2189e8eacc3d056a21cba8e8fb8ef32c0660ac09.tar.gz vyos-1x-2189e8eacc3d056a21cba8e8fb8ef32c0660ac09.zip |
Merge pull request #61 from dsteinkopf/current
T1060: Add webproxy migration script (proxy-bypass -> whitelist).
-rwxr-xr-x | src/migration-scripts/webproxy/0-to-1 | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/migration-scripts/webproxy/0-to-1 b/src/migration-scripts/webproxy/0-to-1 new file mode 100755 index 000000000..4acabba3e --- /dev/null +++ b/src/migration-scripts/webproxy/0-to-1 @@ -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) |