diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-10-03 19:57:06 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-10-03 19:59:21 +0200 |
commit | 2c90c0d7c8d3bef95c1397c199bb53f7847743d7 (patch) | |
tree | 88b40c283a7c55161070c2527d44585d1387a930 /src/migration-scripts/sstp/2-to-3 | |
parent | 0cc3e6f1bdcb907cecf2bf958c49e5d66adcbf13 (diff) | |
download | vyos-1x-2c90c0d7c8d3bef95c1397c199bb53f7847743d7.tar.gz vyos-1x-2c90c0d7c8d3bef95c1397c199bb53f7847743d7.zip |
sstp: T2953: migrate name-server settions to common level
In order to reuse as much as possible before migrationg to get_config_dict()
and re-use Jinja2 snippets the name-server node must be moved one level up to
'set vpn sstp name-server'.
Diffstat (limited to 'src/migration-scripts/sstp/2-to-3')
-rwxr-xr-x | src/migration-scripts/sstp/2-to-3 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/migration-scripts/sstp/2-to-3 b/src/migration-scripts/sstp/2-to-3 index 51f4effed..db705f5eb 100755 --- a/src/migration-scripts/sstp/2-to-3 +++ b/src/migration-scripts/sstp/2-to-3 @@ -39,6 +39,11 @@ else: if config.exists(base_path + ['ppp-settings']): config.rename(base_path + ['ppp-settings'], 'ppp-options') + config_ns = base_path + ['network-settings', 'name-server'] + if config.exists(config_ns): + config.copy(config_ns, base_path + ['name-server']) + config.delete(config_ns) + try: with open(file_name, 'w') as f: f.write(config.to_string()) |