invirt-xen-config (0.0.54) unstable; urgency=low
* invirt-database: pass through parameters for the "other" IP address,
- if any, to vif-invirtroute.
+ if any, to vif-invirtroute. Also, use the netmask and gateway for
+ the VM when autoinstalling, rather than parameters from the global
+ cluster configuration.
* vif-invirtroute: if there is an "other" IP address, DNAT it to the
primary IP, set up routing to get it to the VM, and arp for it.
Also, cut out the nonsense with backgrounding arpspoof, sleeping, and
n = machine.nics[0]
extra = 'ro noresume'
extra += (' ip=%s::%s:%s:%s:eth0:off'
- % (n.ip, config.dhcp.gateway, config.dhcp.netmask, machine.name))
+ % (n.ip, n.gateway, n.netmask, machine.name))
extra += ' %s' % installer_options
root = '/dev/hdb1'
codepath = None