Skip to content

Commit 073db04

Browse files
author
Ronald van Zantvoort
committed
Just our luck on the merge conflict there
1 parent 2d6fde2 commit 073db04

File tree

1 file changed

+0
-12
lines changed
  • systemvm/patches/debian/config/opt/cloud/bin/cs

1 file changed

+0
-12
lines changed

systemvm/patches/debian/config/opt/cloud/bin/cs/CsConfig.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -81,24 +81,12 @@ def use_extdns(self):
8181
def get_dns(self):
8282
conf = self.cmdline().idata()
8383
dns = []
84-
<<<<<<< e09480728f4ed77d0bd0bdc6a6c0966d90f7ee26
85-
if not self.cl.get_use_ext_dns():
86-
if not self.is_vpc() and self.cl.is_redundant():
87-
dns.append(self.cl.get_guest_gw())
88-
else:
89-
dns.append(self.address().get_guest_ip())
90-
names = ["dns1", "dns2"]
91-
for name in names:
92-
if name in self.cmdline().idata():
93-
dns.append(self.cmdline().idata()[name])
94-
=======
9584
if not self.use_extdns():
9685
dns.append(self.address().get_guest_ip())
9786

9887
for name in ('dns1', 'dns2'):
9988
if name in conf:
10089
dns.append(conf[name])
101-
>>>>>>> Virtual Router fixes:
10290
return dns
10391

10492
def get_format(self):

0 commit comments

Comments
 (0)