diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-01-26 23:10:00 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-01-26 23:10:00 +0100 |
commit | 97186852f529935309c009e38403cead2bf0ce75 (patch) | |
tree | c5a15278e8b7c70b41223538ece8e326146179e2 /src/migration-scripts/webproxy/1-to-2 | |
parent | 962f880554e70afc94f8902bb3742a8c0ef44fca (diff) | |
parent | 6d172d767360a675462da6a0bac100a24c544892 (diff) | |
download | vyos-1x-97186852f529935309c009e38403cead2bf0ce75.tar.gz vyos-1x-97186852f529935309c009e38403cead2bf0ce75.zip |
Merge branch 'current' into crux
Diffstat (limited to 'src/migration-scripts/webproxy/1-to-2')
-rwxr-xr-x | src/migration-scripts/webproxy/1-to-2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/migration-scripts/webproxy/1-to-2 b/src/migration-scripts/webproxy/1-to-2 index 4acabba3e..070ff356d 100755 --- a/src/migration-scripts/webproxy/1-to-2 +++ b/src/migration-scripts/webproxy/1-to-2 @@ -19,7 +19,7 @@ with open(file_name, 'r') as f: config = ConfigTree(config_file) cfg_webproxy_base = ['service', 'webproxy'] -if not config.exists(cfg_webproxy_base): +if not config.exists(cfg_webproxy_base + ['proxy-bypass']): # Nothing to do sys.exit(0) else: |