diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-22 18:16:13 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-22 18:35:43 +0200 |
commit | d55ab3a9fa06f3b4827665d269cef6819b549771 (patch) | |
tree | cbe5ba90e8912b3dcda2ecd5e9bd6c59eb281c45 /src/migration-scripts/pptp/1-to-2 | |
parent | f9fbda14a2559794999f3391e420c70b31e6a343 (diff) | |
download | vyos-1x-d55ab3a9fa06f3b4827665d269cef6819b549771.tar.gz vyos-1x-d55ab3a9fa06f3b4827665d269cef6819b549771.zip |
vpn: pptp: T2351: migrate to common radius CLI
Diffstat (limited to 'src/migration-scripts/pptp/1-to-2')
-rwxr-xr-x | src/migration-scripts/pptp/1-to-2 | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/migration-scripts/pptp/1-to-2 b/src/migration-scripts/pptp/1-to-2 index 605081f1c..a13cc3a4f 100755 --- a/src/migration-scripts/pptp/1-to-2 +++ b/src/migration-scripts/pptp/1-to-2 @@ -15,6 +15,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # - migrate dns-servers node to common name-servers +# - remove radios req-limit node from sys import argv, exit @@ -55,7 +56,12 @@ else: config.delete(wins_base) - + # Remove RADIUS server req-limit node + radius_base = base + ['authentication', 'radius'] + if config.exists(radius_base): + for server in config.list_nodes(radius_base + ['server']): + if config.exists(radius_base + ['server', server, 'req-limit']): + config.delete(radius_base + ['server', server, 'req-limit']) try: with open(file_name, 'w') as f: |