Fix help string for subnets option

The option to enable masquerading for the network
is 'masqurade', not 'masquerade_network'.

Change-Id: Icd95d10d18e5dd8b69ca01c98f00d19da123c85d
This commit is contained in:
Harald Jensås 2018-03-21 13:39:26 +01:00
parent 4721d004c6
commit 3bab1292a9
1 changed files with 2 additions and 2 deletions

View File

@ -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')),