- allow you to configure the xenapi_user (often other than root) - allow you to disable the guest installer network - install the plugins in the xcp-xapi location - use alternate webserver location when adding the preseed file - skip the centos specific ip forwarding configuration - make use xcp inventory, if no xensource-inventory is found - correctly deal with kpartx to mount the VM VDI in manage_vdi Change-Id: I8d51725fc97f0bcaa27a46f7a7ced13c369c809e
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Name of this guest
 | 
						|
GUEST_NAME=${GUEST_NAME:-DevStackOSDomU}
 | 
						|
 | 
						|
# Size of image
 | 
						|
VDI_MB=${VDI_MB:-5000}
 | 
						|
OSDOMU_MEM_MB=1024
 | 
						|
 | 
						|
# VM Password
 | 
						|
GUEST_PASSWORD=${GUEST_PASSWORD:-secrete}
 | 
						|
 | 
						|
# Host Interface, i.e. the interface on the nova vm you want to expose the services on
 | 
						|
# Usually either eth2 (management network) or eth3 (public network)
 | 
						|
# not eth0 (private network with XenServer host) or eth1 (VM traffic network)
 | 
						|
HOST_IP_IFACE=${HOST_IP_IFACE:-eth3}
 | 
						|
 | 
						|
# Our nova host's network info
 | 
						|
VM_IP=${VM_IP:-10.255.255.255} # A host-only ip that let's the interface come up, otherwise unused
 | 
						|
MGT_IP=${MGT_IP:-172.16.100.55}
 | 
						|
PUB_IP=${PUB_IP:-192.168.1.55}
 | 
						|
 | 
						|
# Public network
 | 
						|
PUB_BR=${PUB_BR:-"xenbr0"}
 | 
						|
PUB_DEV=${PUB_DEV:-eth0}
 | 
						|
PUB_VLAN=${PUB_VLAN:--1}
 | 
						|
PUB_NETMASK=${PUB_NETMASK:-255.255.255.0}
 | 
						|
 | 
						|
# VM network params
 | 
						|
VM_NETMASK=${VM_NETMASK:-255.255.255.0}
 | 
						|
VM_BR=${VM_BR:-""}
 | 
						|
VM_VLAN=${VM_VLAN:-100}
 | 
						|
VM_DEV=${VM_DEV:-eth0}
 | 
						|
 | 
						|
# MGMT network params
 | 
						|
MGT_NETMASK=${MGT_NETMASK:-255.255.255.0}
 | 
						|
MGT_BR=${MGT_BR:-""}
 | 
						|
MGT_VLAN=${MGT_VLAN:-101}
 | 
						|
MGT_DEV=${MGT_DEV:-eth0}
 | 
						|
 | 
						|
# Guest installer network
 | 
						|
ENABLE_GI=true
 | 
						|
 | 
						|
# Source params
 | 
						|
cd ../.. && source ./stackrc && cd $TOP_DIR
 |