diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-17 18:48:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-17 18:48:34 +0100 |
commit | 0f61334ff4a38aca6e0c33a16f2400b5e7a3b5b3 (patch) | |
tree | 879826a9e22c8228827a8ab1dcee55cd9c5cf240 /src/migration-scripts | |
parent | 31d3d7263ee3082bb7f7dd722086e2ce5c892a03 (diff) | |
parent | e6713a7e861dbe3ec8af1761f1c0a3d1ad725cac (diff) | |
download | vyos-1x-0f61334ff4a38aca6e0c33a16f2400b5e7a3b5b3.tar.gz vyos-1x-0f61334ff4a38aca6e0c33a16f2400b5e7a3b5b3.zip |
Merge pull request #2845 from vyos/mergify/bp/sagitta/pr-2842
T5953: Changed values of 'close-action' to Strongswan values (backport #2842)
Diffstat (limited to 'src/migration-scripts')
-rwxr-xr-x | src/migration-scripts/ipsec/12-to-13 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/migration-scripts/ipsec/12-to-13 b/src/migration-scripts/ipsec/12-to-13 index 504a2e9c7..c11f708bd 100755 --- a/src/migration-scripts/ipsec/12-to-13 +++ b/src/migration-scripts/ipsec/12-to-13 @@ -15,6 +15,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # Changed value of dead-peer-detection.action from hold to trap +# Changed value of close-action from hold to trap and from restart to start import re @@ -41,8 +42,14 @@ if not config.exists(base): else: for ike_group in config.list_nodes(base): base_dpd_action = base + [ike_group, 'dead-peer-detection', 'action'] + base_close_action = base + [ike_group, 'close-action'] if config.exists(base_dpd_action) and config.return_value(base_dpd_action) == 'hold': config.set(base_dpd_action, 'trap', replace=True) + if config.exists(base_close_action): + if config.return_value(base_close_action) == 'hold': + config.set(base_close_action, 'trap', replace=True) + if config.return_value(base_close_action) == 'restart': + config.set(base_close_action, 'start', replace=True) try: with open(file_name, 'w') as f: |