1
0
mirror of synced 2026-03-09 11:56:04 +00:00

Print the output of called commands on --verbose (Closes: #513126)

This commit is contained in:
Axel Beckert
2010-08-05 16:03:58 +02:00
parent e30550a289
commit 3d43ec184d
2 changed files with 8 additions and 1 deletions

View File

@@ -4205,7 +4205,11 @@ sub runCommand
}
while (my $line = <CMD>) {
logonly $line;
if ($CONFIG{ 'verbose' }) {
logprint $line;
} else {
logonly $line;
}
}
my $rcclose = close(CMD);

3
debian/changelog vendored
View File

@@ -11,6 +11,9 @@ xen-tools (4.2~rc1-1) UNRELEASED; urgency=low
- Uses apt-config to parse Dom0's apt.conf. (Closes: #560011)
- Fixes wrong loop module parameter syntax in warning. Thanks to
Daniel Baumann for spotting this. (Closes: #516902)
- With --verbose, the output of commands called by xen-tools
(e.g. debootstrap) is not only logged, but also printed to
STDOUT. (Closes: #513126)
* Bump Standards-Version to 3.9.1 (no changes)
-- Axel Beckert <abe@debian.org> Wed, 02 Jun 2010 18:10:34 +0200