From 30111fa493c72e7182854f295bc88d9eecccf419 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Mon, 29 Jul 2024 19:16:43 +0100 Subject: vyos.configtree: T6620: allow list_nodes() to work on non-existent paths and return an empty list in that case (handy for migration scripts and the like) --- src/migration-scripts/openvpn/1-to-2 | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/migration-scripts/openvpn/1-to-2') diff --git a/src/migration-scripts/openvpn/1-to-2 b/src/migration-scripts/openvpn/1-to-2 index b7b7d4c77..2baa7302c 100644 --- a/src/migration-scripts/openvpn/1-to-2 +++ b/src/migration-scripts/openvpn/1-to-2 @@ -20,12 +20,8 @@ from vyos.configtree import ConfigTree def migrate(config: ConfigTree) -> None: - if not config.exists(['interfaces', 'openvpn']): - # Nothing to do - return - - ovpn_intfs = config.list_nodes(['interfaces', 'openvpn']) - for i in ovpn_intfs: + ovpn_intfs = config.list_nodes(['interfaces', 'openvpn'], path_must_exist=False) + for i in ovpn_intfs: # Remove 'encryption cipher' and add this value to 'encryption ncp-ciphers' # for server and client mode. # Site-to-site mode still can use --cipher option -- cgit v1.2.3