From bb7f6ad89c730cdc6922b6756fa0c9a75aa8fa3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Harald=20Jens=C3=A5s?= Date: Wed, 21 Mar 2018 13:39:26 +0100 Subject: [PATCH] Fix help string for subnets option The option to enable masquerading for the network is 'masquerade', not 'masquerade_network'. Change-Id: Icd95d10d18e5dd8b69ca01c98f00d19da123c85d (cherry picked from commit 3bab1292a9def2486fa6429361360cddba321283) --- instack_undercloud/undercloud.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instack_undercloud/undercloud.py b/instack_undercloud/undercloud.py index 16c188170..713b7879f 100644 --- a/instack_undercloud/undercloud.py +++ b/instack_undercloud/undercloud.py @@ -180,7 +180,7 @@ _opts = [ 'For each network a section/group needs to be added to ' 'the configuration file with these parameters set: ' 'cidr, dhcp_start, dhcp_end, inspection_iprange, ' - 'gateway and masquerade_network.' + 'gateway and masquerade.' '\n\n' 'Example:\n\n' 'subnets = subnet1,subnet2\n' @@ -193,7 +193,7 @@ _opts = [ 'dhcp_end = 192.168.10.200\n' 'inspection_iprange = 192.168.10.20,192.168.10.90\n' 'gateway = 192.168.10.254\n' - 'masquerade_network = True' + 'masquerade = True' '\n' '[subnet2]\n' '. . .\n')),