mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix gw4/gw6 typo (#1841)
This commit is contained in:
parent
393ea3293c
commit
70384d72e6
1 changed files with 3 additions and 3 deletions
|
@ -625,7 +625,7 @@ class Nmcli(object):
|
|||
cmd.append(self.ip6)
|
||||
if self.gw6 is not None:
|
||||
cmd.append('ipv6.gateway')
|
||||
cmd.append(self.gw4)
|
||||
cmd.append(self.gw6)
|
||||
if self.dns6 is not None:
|
||||
cmd.append('ipv6.dns')
|
||||
cmd.append(self.dns6)
|
||||
|
@ -745,7 +745,7 @@ class Nmcli(object):
|
|||
cmd.append(self.ip6)
|
||||
if self.gw6 is not None:
|
||||
cmd.append('ipv6.gateway')
|
||||
cmd.append(self.gw4)
|
||||
cmd.append(self.gw6)
|
||||
if self.dns6 is not None:
|
||||
cmd.append('ipv6.dns')
|
||||
cmd.append(self.dns6)
|
||||
|
@ -846,7 +846,7 @@ class Nmcli(object):
|
|||
cmd.append(self.ip6)
|
||||
if self.gw6 is not None:
|
||||
cmd.append('ipv6.gateway')
|
||||
cmd.append(self.gw4)
|
||||
cmd.append(self.gw6)
|
||||
if self.dns6 is not None:
|
||||
cmd.append('ipv6.dns')
|
||||
cmd.append(self.dns6)
|
||||
|
|
Loading…
Reference in a new issue