diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-07-03 17:47:52 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-07-03 17:49:04 +0200 |
commit | 469cd1de9f904bcc451379316f39f7ef34f0eca0 (patch) | |
tree | 390fe05c91c303adde3e7007c1956c3336fc9482 /src/migration-scripts | |
parent | dcfeb0de0a510d00c37101da50205b51dd464d72 (diff) | |
download | vyos-1x-469cd1de9f904bcc451379316f39f7ef34f0eca0.tar.gz vyos-1x-469cd1de9f904bcc451379316f39f7ef34f0eca0.zip |
ipsec: T2816: rework log options for debugging
Renamed CLI from "logging log-modes" to "log subsystem" and "logging log-level"
to "log level". THat is more human firendly.
Diffstat (limited to 'src/migration-scripts')
-rwxr-xr-x | src/migration-scripts/ipsec/5-to-6 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/migration-scripts/ipsec/5-to-6 b/src/migration-scripts/ipsec/5-to-6 index 86be55d13..ba5ce0fca 100755 --- a/src/migration-scripts/ipsec/5-to-6 +++ b/src/migration-scripts/ipsec/5-to-6 @@ -60,6 +60,20 @@ if config.exists(base + ['site-to-site', 'peer']): if config.exists(public_networks): config.delete(public_networks) +# Rename "logging log-level" and "logging log-modes" to something more human friendly +log = base + ['logging'] +if config.exists(log): + config.rename(log, 'log') + log = base + ['log'] + +log_level = log + ['log-level'] +if config.exists(log_level): + config.rename(log_level, 'level') + +log_mode = log + ['log-modes'] +if config.exists(log_mode): + config.rename(log_mode, 'subsystem') + try: with open(file_name, 'w') as f: f.write(config.to_string()) |