summaryrefslogtreecommitdiff
path: root/src/migration-scripts
diff options
context:
space:
mode:
authorhagbard <vyosdev@derith.de>2018-11-19 12:29:25 -0800
committerhagbard <vyosdev@derith.de>2018-11-19 12:32:07 -0800
commit6cf973835c53c6ef0f56385a9b6e5ed730525410 (patch)
treed2ebca8179365fe44c6e3df0c45e0af561fef7a6 /src/migration-scripts
parentb1435a7ad210135ef15038be384b7e2474ebb923 (diff)
downloadvyos-1x-6cf973835c53c6ef0f56385a9b6e5ed730525410.tar.gz
vyos-1x-6cf973835c53c6ef0f56385a9b6e5ed730525410.zip
T835: migration script for radius' secret vs. key, rolled back the
change to 'mode local|radius'
Diffstat (limited to 'src/migration-scripts')
-rwxr-xr-xsrc/migration-scripts/pppoe-server/0-to-135
1 files changed, 35 insertions, 0 deletions
diff --git a/src/migration-scripts/pppoe-server/0-to-1 b/src/migration-scripts/pppoe-server/0-to-1
new file mode 100755
index 000000000..df816a321
--- /dev/null
+++ b/src/migration-scripts/pppoe-server/0-to-1
@@ -0,0 +1,35 @@
+#!/usr/bin/env python3
+
+# Delete "service ssh allow-root" option
+
+import sys
+
+from vyos.configtree import ConfigTree
+
+if (len(sys.argv) < 1):
+ print("Must specify file name!")
+ sys.exit(1)
+
+file_name = sys.argv[1]
+
+with open(file_name, 'r') as f:
+ config_file = f.read()
+
+ctree = ConfigTree(config_file)
+
+
+if not ctree.exists(['service', 'pppoe-server', 'authentication','radius-server']):
+ # Nothing to do
+ sys.exit(0)
+else:
+ nodes = ctree.list_nodes(['service', 'pppoe-server', 'authentication','radius-server'])
+ for node in nodes:
+ if ctree.exists(['service', 'pppoe-server', 'authentication', 'radius-server', node, 'key']):
+ val = ctree.return_value(['service', 'pppoe-server', 'authentication', 'radius-server', node, 'key'])
+ ctree.set(['service', 'pppoe-server', 'authentication', 'radius-server', node, 'secret'], value=val, replace=False)
+ ctree.delete(['service', 'pppoe-server', 'authentication', 'radius-server', node, 'key'])
+ try:
+ open(file_name,'w').write(ctree.to_string())
+ except OSError as e:
+ print("Failed to save the modified config: {}".format(e))
+ sys.exit(1)