diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-09 08:32:15 +0100 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-02-09 08:05:14 +0000 |
commit | 32de8b3234f512d1555ad569d27ddecff6e18922 (patch) | |
tree | d00f3ae991a5c65cd826996878ffb892db913493 /src/migration-scripts/https | |
parent | e6f914429daadd2c812ef8cbe051321a8a3e5e60 (diff) | |
download | vyos-1x-32de8b3234f512d1555ad569d27ddecff6e18922.tar.gz vyos-1x-32de8b3234f512d1555ad569d27ddecff6e18922.zip |
https: T5902: fix migration of virtual-host port
CLI source node is port and not listen-port.
(cherry picked from commit 63d53a17274349fd68defdbf9f7ce16be63fc9b1)
Diffstat (limited to 'src/migration-scripts/https')
-rwxr-xr-x | src/migration-scripts/https/5-to-6 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/migration-scripts/https/5-to-6 b/src/migration-scripts/https/5-to-6 index 0090adccb..72e9e31f7 100755 --- a/src/migration-scripts/https/5-to-6 +++ b/src/migration-scripts/https/5-to-6 @@ -79,7 +79,7 @@ if config.exists(base + ['virtual-host']): tmp = config.return_values(allow_path) allow_client.extend(tmp) - port_path = base + ['virtual-host', virtual_host, 'listen-port'] + port_path = base + ['virtual-host', virtual_host, 'port'] if config.exists(port_path): tmp = config.return_value(port_path) listen_port.append(tmp) @@ -99,8 +99,6 @@ if config.exists(base + ['virtual-host']): for address in listen_address: config.set(base + ['listen-address'], value=address, replace=False) - - try: with open(file_name, 'w') as f: f.write(config.to_string()) |