summaryrefslogtreecommitdiff
path: root/src/migration-scripts
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-03-20 23:22:09 +0100
committerChristian Poessinger <christian@poessinger.com>2020-03-20 23:25:05 +0100
commit95c42faa4436c5dd761049a8a6e75996c815cc2c (patch)
treec7c2218544515896cfa8bd3c35cbf58dd3d54eb1 /src/migration-scripts
parent86860b51ad0f3f6148b00804860aee2d55414274 (diff)
downloadvyos-1x-95c42faa4436c5dd761049a8a6e75996c815cc2c.tar.gz
vyos-1x-95c42faa4436c5dd761049a8a6e75996c815cc2c.zip
sstp: T2008: migrate SSL certificate nodes
Diffstat (limited to 'src/migration-scripts')
-rwxr-xr-xsrc/migration-scripts/sstp/0-to-117
1 files changed, 17 insertions, 0 deletions
diff --git a/src/migration-scripts/sstp/0-to-1 b/src/migration-scripts/sstp/0-to-1
index 2edf76a56..1d1bea51f 100755
--- a/src/migration-scripts/sstp/0-to-1
+++ b/src/migration-scripts/sstp/0-to-1
@@ -21,6 +21,7 @@
# - authentication radius-server x.x.x.x to authentication radius server x.x.x.x
# - authentication radius-settings to authentication radius
# - do not migrate radius server req-limit, use default of unlimited
+# - migrate SSL certificate path
import os
import sys
@@ -105,6 +106,22 @@ else:
config.set_tag(new_base + ['authentication', 'radius', 'server'])
config.delete(radius_server)
+ # migrate SSL certificates
+ old_ssl = new_base + ['sstp-settings', 'ssl-certs']
+ new_ssl = new_base + ['ssl']
+ config.copy(old_ssl, new_ssl)
+ config.delete(old_ssl)
+
+ if config.exists(new_ssl + ['ca']):
+ config.rename(new_ssl + ['ca'], 'ca-cert-file')
+
+ if config.exists(new_ssl + ['server-cert']):
+ config.rename(new_ssl + ['server-cert'], 'cert-file')
+
+ if config.exists(new_ssl + ['server-key']):
+ config.rename(new_ssl + ['server-key'], 'key-file')
+
+
try:
with open(file_name, 'w') as f:
f.write(config.to_string())