Skip to content

Commit 6a449e4

Browse files
committed
Merge pull request #1788 from shapeblue/4.9-fix-merge-pr1766
systemvm: Fix regression from fwd-merging PR #1766Fixes merge conflict issue incorrectly fixed during a fwd-merge in 825935 from PR #1766. * pr/1788: systemvm: Fix regression from 825935 Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
2 parents 50f80cc + cc72e4d commit 6a449e4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • systemvm/patches/debian/config/opt/cloud/bin/cs

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,15 +137,15 @@ def add(self, entry):
137137
if entry['default_entry'] == True:
138138
self.cloud.add("%s,%s,%s,%sh" % (entry['mac_address'],
139139
entry['ipv4_adress'],
140-
entry['host_name']),
141-
lease)
140+
entry['host_name'],
141+
lease))
142142
else:
143143
tag = entry['ipv4_adress'].replace(".","_")
144144
self.cloud.add("%s,set:%s,%s,%s,%sh" % (entry['mac_address'],
145145
tag,
146146
entry['ipv4_adress'],
147-
entry['host_name']),
148-
lease)
147+
entry['host_name'],
148+
lease))
149149
self.dhcp_opts.add("%s,%s" % (tag, 3))
150150
self.dhcp_opts.add("%s,%s" % (tag, 6))
151151
self.dhcp_opts.add("%s,%s" % (tag, 15))

0 commit comments

Comments
 (0)