From 94f08cbb29a924cdb7c4199f672beddfccd2d194 Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 18 Dec 2005 03:36:40 +0000 Subject: [PATCH] 2005-12-18 03:36:40 by steve Fixed the erroneous usage of xfs, I had meant to remove that. --- xen-create-image | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen-create-image b/xen-create-image index 675d091..a1db5b8 100755 --- a/xen-create-image +++ b/xen-create-image @@ -48,7 +48,7 @@ # -- # http://www.steve.org.uk/ # -# $Id: xen-create-image,v 1.4 2005-12-18 03:33:54 steve Exp $ +# $Id: xen-create-image,v 1.5 2005-12-18 03:36:40 steve Exp $ # use strict; @@ -152,7 +152,7 @@ print "Done\n"; # Now mount the image, in a secure temporary location. # my $dir = tempdir( CLEANUP => 1 ); -`mount -t xfs -o loop $image $dir`; +`mount -t ext3 -o loop $image $dir`; # Test that the mount worked