Your message dated Thu, 14 Dec 2006 22:02:06 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#402315: fixed in xen-tools 3.0-1 has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---Package: xen-tools Tags: Patch I stumbled over the bin/ls check after install, which seems to be new. As I use xen-tools in some situations only for creatinf my xen config files, this is not helpful in some situations. here's a patch to add a noinstall option (against cvs version of some hours ago) [EMAIL PROTECTED]:/hier/sources/xen-tools/xen-tools-cvs$ cvs diff -u bin/xen-create-image cvs diff: CVS password file /home/henning/.cvspass does not exist - creating a new file Index: bin/xen-create-image =================================================================== RCS file: /home/cvs/xen-tools/bin/xen-create-image,v retrieving revision 1.110 diff -u -r1.110 xen-create-image --- bin/xen-create-image 5 Dec 2006 15:04:31 -0000 1.110 +++ bin/xen-create-image 9 Dec 2006 13:19:55 -0000 @@ -693,17 +703,21 @@ # # Call xt-install-image to perform the actual install. # -installSystem(); +if ( $CONFIG{'noinstall'} ne 1 ) +{ + installSystem(); +} + # -# Make sure the installation succeeded. +# Make sure the installation succeeded - only if install was run # -if ( ! -x $MOUNT_POINT . "/bin/ls" ) -{ - logprint( "System installation failed. Aborting\n"); - exit; -} +if ( $CONFIG{'noinstall'} ne 1 && ! -x $MOUNT_POINT . "/bin/ls" ) + { + logprint( "System installation failed. Aborting\n"); + exit; + } @@ -711,7 +725,10 @@ # Call xt-customise-image to setup networking, and run any # distributuion-specific hooks. # -runCustomisationHooks(); +if ( $CONFIG{'noinstall'} ne 1 ) +{ + runCustomisationHooks(); +} # @@ -1367,6 +1384,14 @@ logprint( "WARNING: No netmaks address specified!\n" ) unless( defined( $CONFIG{'netmask'} ) ); } + + # if config noinstall isn't set set it to exact 0 explicitly + if ( ! $CONFIG{'noinstall'} || $CONFIG{'noinstall'} eq 0 ){ + $CONFIG{'noinstall'} = 0; + } else { + $CONFIG{'noinstall'} = 1; + } + }
--- End Message ---
--- Begin Message ---Source: xen-tools Source-Version: 3.0-1 We believe that the bug you reported is fixed in the latest version of xen-tools, which is due to be installed in the Debian FTP archive: xen-tools_3.0-1.diff.gz to pool/main/x/xen-tools/xen-tools_3.0-1.diff.gz xen-tools_3.0-1.dsc to pool/main/x/xen-tools/xen-tools_3.0-1.dsc xen-tools_3.0-1_all.deb to pool/main/x/xen-tools/xen-tools_3.0-1_all.deb xen-tools_3.0.orig.tar.gz to pool/main/x/xen-tools/xen-tools_3.0.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Radu Spineanu <[EMAIL PROTECTED]> (supplier of updated xen-tools package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Wed, 13 Dec 2006 11:17:28 +0000 Source: xen-tools Binary: xen-tools Architecture: source all Version: 3.0-1 Distribution: unstable Urgency: low Maintainer: Roland Stigge <[EMAIL PROTECTED]> Changed-By: Radu Spineanu <[EMAIL PROTECTED]> Description: xen-tools - Tools to manage debian XEN virtual servers Closes: 383057 399705 402315 402328 Changes: xen-tools (3.0-1) unstable; urgency=low . [ Steve Kemp ] * New upstream release of 3.0 - Tests that config files exists. (Closes: #402328) - New option to create image but not install. (Closes: #383057, #402315) - Made "etch" the default target to install. (Closes: #399705) Files: 48ed4ba56cd7aa11173c283650c7d556 645 utils extra xen-tools_3.0-1.dsc bea4a8f65bbe89aa316ff8c1df448af5 89804 utils extra xen-tools_3.0.orig.tar.gz ccdf06363c0747536d792a7eee95c4c1 5812 utils extra xen-tools_3.0-1.diff.gz 598410db4af29ebd88efbfe64d055e01 106508 utils extra xen-tools_3.0-1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFFgcdOJkMZOMmr+9MRAuG1AJ4w7KuFM+ogjz1G3W2nvZkQfQVCDQCeMV50 IOZJUmBJFjR5SuoruBr2u44= =Rnx/ -----END PGP SIGNATURE-----
--- End Message ---

