Revision 3680f662

b/lib/hypervisor/hv_xen.py
45 45
  REBOOT_RETRY_COUNT = 60
46 46
  REBOOT_RETRY_INTERVAL = 10
47 47

  
48
  ANCILLARY_FILES = [
49
    '/etc/xen/xend-config.sxp',
50
    '/etc/xen/scripts/vif-bridge',
51
    ]
52

  
48 53
  @classmethod
49 54
  def _WriteConfigFile(cls, instance, block_devices):
50 55
    """Write the Xen config file for the instance.
......
464 469
class XenHvmHypervisor(XenHypervisor):
465 470
  """Xen HVM hypervisor interface"""
466 471

  
472
  ANCILLARY_FILES = XenHypervisor.ANCILLARY_FILES + \
473
    [constants.VNC_PASSWORD_FILE]
474

  
467 475
  PARAMETERS = {
468 476
    constants.HV_ACPI: hv_base.NO_CHECK,
469 477
    constants.HV_BOOT_ORDER: (True, ) + \

Also available in: Unified diff