diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-08-05 10:43:39 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-08-05 10:43:39 +0200 |
commit | 47f4faf7987f122861bfeb451871ac268b6ecbb4 (patch) | |
tree | 3b6d6d06c11845b6ea172db4469fdda67faca9b9 /src | |
parent | 5a09a105b5832e0a804ab403fc287e19ad782bb5 (diff) | |
download | vyos-1x-47f4faf7987f122861bfeb451871ac268b6ecbb4.tar.gz vyos-1x-47f4faf7987f122861bfeb451871ac268b6ecbb4.zip |
T71: rename IPsec "settings" to "options" for consistency with the rest of the system.
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/ipsec-settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/ipsec-settings.py b/src/conf_mode/ipsec-settings.py index 481e083d6..921f20491 100755 --- a/src/conf_mode/ipsec-settings.py +++ b/src/conf_mode/ipsec-settings.py @@ -31,7 +31,7 @@ def get_config(): config = vyos.config.Config() data = {"install_routes": "yes"} - if config.exists("vpn ipsec settings disable-route-autoinstall"): + if config.exists("vpn ipsec options disable-route-autoinstall"): data["install_routes"] = "no" return data |