1
0
mirror of synced 2026-01-20 09:34:58 +00:00

2006-06-10 14:36:53 by steve

BUGFIX: D'oh.  Memory size is correctly defined.

  Everything works for LVM now :)
This commit is contained in:
steve 2006-06-10 14:36:53 +00:00
parent 10c0a488d3
commit 8fde8fa63f

View File

@ -45,7 +45,7 @@ xt-create-config - Create a Xen configuration file for a new domain.
--
http://www.steve.org.uk/
$Id: xt-create-xen-config,v 1.6 2006-06-10 14:26:45 steve Exp $
$Id: xt-create-xen-config,v 1.7 2006-06-10 14:36:53 steve Exp $
=cut
@ -140,7 +140,7 @@ sub parseCommandLineArguments
if ( $VERSION )
{
my $REVISION = '$Revision: 1.6 $';
my $REVISION = '$Revision: 1.7 $';
if ( $REVISION =~ /1.([0-9.]+) / )
{
@ -198,7 +198,7 @@ sub createXenConfig
#
# Strip a trailing qualifier from the memory
#
if ( $ENV{'memory'} =~ /([^0-9]+)/ )
if ( $ENV{'memory'} =~ /([0-9]+)/ )
{
$ENV{'memory'} = $1;
}