Skip to content

Commit

Permalink
Fix Wrong syntax for set:tag in dnsmasq startup option
Browse files Browse the repository at this point in the history
Looks like the introduction of quotes in fix for previous
bug 1012443 was erroneous.

Fixes LP# 1152504

Change-Id: Ic84739e38e3b3567f1617302a33623de03196f85
(cherry picked from commit d8188ef)
  • Loading branch information
Davanum Srinivas authored and vishvananda committed Mar 28, 2013
1 parent 4e46b42 commit 50dece6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nova/network/linux_net.py
Expand Up @@ -870,7 +870,7 @@ def restart_dhcp(context, dev, network_ref):
'--pid-file=%s' % _dhcp_file(dev, 'pid'),
'--listen-address=%s' % network_ref['dhcp_server'],
'--except-interface=lo',
'--dhcp-range=set:\'%s\',%s,static,%ss' %
'--dhcp-range=set:%s,%s,static,%ss' %
(network_ref['label'],
network_ref['dhcp_start'],
FLAGS.dhcp_lease_time),
Expand Down

0 comments on commit 50dece6

Please sign in to comment.