diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-21 20:25:59 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-11-21 20:52:08 +0100 |
commit | 0e885f1bf01424130b6876e769cc42612b19351b (patch) | |
tree | f21b06cdeaa4120486c2c0deedec29c94a3e254f /src/migration-scripts/https/4-to-5 | |
parent | 3ab206b04350aec4872ed72ae4bd3440a47204f0 (diff) | |
download | vyos-1x-0e885f1bf01424130b6876e769cc42612b19351b.tar.gz vyos-1x-0e885f1bf01424130b6876e769cc42612b19351b.zip |
http: T5762: rename "virtual-host listen-port" -> "virtual-host port"
This complements commit f5e43b136 ("http: T5762: api: make API socket backend
communication the one and only default") so we have a consistent port CLI node
across VyOS components.
Diffstat (limited to 'src/migration-scripts/https/4-to-5')
-rwxr-xr-x | src/migration-scripts/https/4-to-5 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/migration-scripts/https/4-to-5 b/src/migration-scripts/https/4-to-5 index a503e0cb7..0dfb6ac19 100755 --- a/src/migration-scripts/https/4-to-5 +++ b/src/migration-scripts/https/4-to-5 @@ -48,6 +48,12 @@ if config.exists(base + ['api', 'socket']): if config.exists(base + ['api', 'port']): config.delete(base + ['api', 'port']) +# rename listen-port -> port ver virtual-host +if config.exists(base + ['virtual-host']): + for vhost in config.list_nodes(base + ['virtual-host']): + if config.exists(base + ['virtual-host', vhost, 'listen-port']): + config.rename(base + ['virtual-host', vhost, 'listen-port'], 'port') + try: with open(file_name, 'w') as f: f.write(config.to_string()) |