Revision 22d568c2

b/lib/hypervisor/hv_xen.py
34 34
from ganeti import objects
35 35

  
36 36

  
37
XEND_CONFIG_FILE = "/etc/xen/xend-config.sxp"
38
XL_CONFIG_FILE = "/etc/xen/xl.conf"
39
VIF_BRIDGE_SCRIPT = "/etc/xen/scripts/vif-bridge"
40

  
41

  
37 42
class XenHypervisor(hv_base.BaseHypervisor):
38 43
  """Xen generic hypervisor interface
39 44

  
......
46 51
  REBOOT_RETRY_INTERVAL = 10
47 52

  
48 53
  ANCILLARY_FILES = [
49
    "/etc/xen/xend-config.sxp",
50
    "/etc/xen/xl.conf",
51
    "/etc/xen/scripts/vif-bridge",
54
    XEND_CONFIG_FILE,
55
    XL_CONFIG_FILE,
56
    VIF_BRIDGE_SCRIPT,
52 57
    ]
53 58

  
54 59
  @staticmethod

Also available in: Unified diff