From e97ca9e3750aa25e2faf0a9ebcc0ef8eaa0ee496 Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 8 Jan 2006 23:46:01 +0000 Subject: [PATCH] 2006-01-08 23:46:01 by steve Fix the sample configuration file entry to read 'fs' not 'filesystem' --- xen-create-image | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xen-create-image b/xen-create-image index 0bb7dea..37b5a36 100755 --- a/xen-create-image +++ b/xen-create-image @@ -17,7 +17,6 @@ xen-create-image - Create a new virtual Debian installation for Xen. Size / General options: --boot Boot the new instance after creating it. --debootstrap Pass anything named here onto debootstrap. - --dir Specify where the output images should go. --dist Specify the distribution you wish to install: Sarge/Etch/Sid. --fs Specify the filesystem type to use. --kernel Set the path to the kernel to use for dom U. @@ -37,6 +36,7 @@ xen-create-image - Create a new virtual Debian installation for Xen. Mandatory options: + --dir Specify where the output images should go. --hostname Set the images hostname. =cut @@ -200,7 +200,7 @@ Show the version number and exit. size = 2Gb # Disk image size. memory = 128Mb # Memory size swap = 128Mb # Swap size - filesystem = ext3 # use EXT3 filesystems + fs = ext3 # use EXT3 filesystems dist = sarge # Default distribution to install. # @@ -339,7 +339,7 @@ Install an X11 server, using VNC and XDM -- http://www.steve.org.uk/ - $Id: xen-create-image,v 1.79 2006-01-07 23:23:12 steve Exp $ + $Id: xen-create-image,v 1.80 2006-01-08 23:46:01 steve Exp $ =cut @@ -879,7 +879,7 @@ sub parseCommandLineArguments if ( $VERSION ) { - my $REVISION = '$Id: xen-create-image,v 1.79 2006-01-07 23:23:12 steve Exp $'; + my $REVISION = '$Id: xen-create-image,v 1.80 2006-01-08 23:46:01 steve Exp $'; $VERSION = join (' ', (split (' ', $REVISION))[2]); $VERSION =~ s/,v\b//; $VERSION =~ s/(\S+)$/$1/;