Skip to content

Commit

Permalink
systemvm: Fix regression from 825935
Browse files Browse the repository at this point in the history
Fixes merge conflict issue incorrectly fixed during a fwd-merge in 825935
from PR #1766

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
  • Loading branch information
rohityadavcloud committed Nov 27, 2016
1 parent 50f80cc commit cc72e4d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions systemvm/patches/debian/config/opt/cloud/bin/cs/CsDhcp.py
Expand Up @@ -137,15 +137,15 @@ def add(self, entry):
if entry['default_entry'] == True:
self.cloud.add("%s,%s,%s,%sh" % (entry['mac_address'],
entry['ipv4_adress'],
entry['host_name']),
lease)
entry['host_name'],
lease))
else:
tag = entry['ipv4_adress'].replace(".","_")
self.cloud.add("%s,set:%s,%s,%s,%sh" % (entry['mac_address'],
tag,
entry['ipv4_adress'],
entry['host_name']),
lease)
entry['host_name'],
lease))
self.dhcp_opts.add("%s,%s" % (tag, 3))
self.dhcp_opts.add("%s,%s" % (tag, 6))
self.dhcp_opts.add("%s,%s" % (tag, 15))
Expand Down

0 comments on commit cc72e4d

Please sign in to comment.