From 42f5641bdd4d9cb6e26ca8116f7ff84488534b2a Mon Sep 17 00:00:00 2001 From: steve Date: Wed, 8 Aug 2007 22:43:18 +0000 Subject: [PATCH] 2007-08-08 22:43:17 by steve Misc. update to fix failing test case. --- bin/xen-create-image | 6 ++++-- tests/argument-check.t | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/bin/xen-create-image b/bin/xen-create-image index a71fab8..9fc6b6f 100755 --- a/bin/xen-create-image +++ b/bin/xen-create-image @@ -38,6 +38,8 @@ xen-create-image - Easily create new Xen instances with networking and OpenSSH. --copy-cmd Not used. + --debootstrap-cmd Not used. + --force Force overwriting existing images. This will remove existing images or LVM volumes which match those which are liable to be used by the new invocation. @@ -594,7 +596,7 @@ Install an X11 server, using VNC and XDM -- http://www.steve.org.uk/ - $Id: xen-create-image,v 1.175 2007-08-08 22:41:44 steve Exp $ + $Id: xen-create-image,v 1.176 2007-08-08 22:43:17 steve Exp $ =cut @@ -1375,7 +1377,7 @@ sub parseCommandLineArguments if ( $VERSION ) { - my $REVISION = '$Revision: 1.175 $'; + my $REVISION = '$Revision: 1.176 $'; if ( $REVISION =~ /1.([0-9.]+) / ) { $REVISION = $1; diff --git a/tests/argument-check.t b/tests/argument-check.t index fc0e2ba..64acb49 100644 --- a/tests/argument-check.t +++ b/tests/argument-check.t @@ -5,7 +5,7 @@ # # Steve # -- -# $Id: argument-check.t,v 1.7 2007-07-25 22:45:57 steve Exp $ +# $Id: argument-check.t,v 1.8 2007-08-08 22:43:18 steve Exp $ # use strict; @@ -47,6 +47,7 @@ foreach my $key ( sort keys %OPTIONS ) } next if ( $key =~ /mirror_/i ); + next if ( $key =~ /_options/i ); is( $found, 1 , " Found documentation for '$key'" ); }