On Sat Sep 29, 2007 at 15:54:20 -0700, Graham Freeman wrote:
> The solution was to change the hostname from Xen's perspective by changing the
> file '/etc/xen/amphibia.longcompanyname.com.cfg' so that this line:
>
>
> name = 'amphibia.longcompanyname.com'
>
>
> was shortened thus:
>
>
> name = 'amphibia'
>
You might be able to automate this by editing /etc/xen-tools/xm.tmpl
change this:
# Hostname
#
name = '{$hostname}'
To something like this:
name = '{ my @tmp = split(/\./,$hostname); $tmp[0]; }'
Steve
--
http://www.steve.org.uk/
Received on Mon Oct 01 2007 - 06:59:36 BST