1
0
mirror of synced 2026-05-04 07:18:39 +00:00
Files
xen-tools.xen-tools/etc/xm.tmpl
steve 4bf7527c77 2006-08-17 21:00:47 by steve
Update for tests.
2006-08-17 21:00:47 +00:00

56 lines
735 B
Cheetah

#
# Configuration file for the Xen instance {$hostname}, created on
# { scalar localtime }.
#
#
# Kernel + memory size
#
kernel = '{$kernel}'
ramdisk = '{$initrd}'
memory = '{$memory}'
#
# Disk device(s).
#
root = '/dev/{$device}1 ro'
{ if ( $noswap )
{
$OUT .= "disk = [ '$image_vbd,$device" . "1,w' ]";
}
else
{
$OUT .= "disk = [ '$image_vbd,$device" . "1,w', '$swap_vbd,$device" . "2,w' ]";
}
}
#
# Hostname
#
name = '{$hostname}'
#
# Networking
#
{ if ( $dhcp )
{
$OUT .= "dhcp = 'dhcp'\n";
$OUT .= "vif = [ '' ]";
}
else
{
$OUT .= "vif = [ 'ip=$ip1' ]";
}
}
#
# Behaviour
#
on_poweroff = 'destroy'
on_reboot = 'restart'
on_crash = 'restart'