No more expect at least one option to mkfs.* calls.
Fixes btrfs creation. Closes Debian bug report #609982.
This commit is contained in:
@@ -3395,24 +3395,13 @@ sub createFilesystem
|
||||
# Split the command into "binary" + "args". Make sure that
|
||||
# the binary exists and is executable.
|
||||
#
|
||||
if ( $command =~ /([^ ]+) (.*)$/ )
|
||||
{
|
||||
my $binary = $1;
|
||||
my $args = $2;
|
||||
my ($binary, $args) = split(/ /, $command, 2);
|
||||
|
||||
if ( !defined( findBinary($binary) ) )
|
||||
{
|
||||
logprint(
|
||||
"The binary '$binary' required to create the filesystem $fs is missing\n"
|
||||
);
|
||||
$FAIL = 1;
|
||||
exit 127;
|
||||
}
|
||||
}
|
||||
else
|
||||
if ( !defined( findBinary($binary) ) )
|
||||
{
|
||||
logprint(
|
||||
"The filesystem creation hash is bogus for filesystem : $fs\n");
|
||||
"The binary '$binary' required to create the filesystem $fs is missing\n"
|
||||
);
|
||||
$FAIL = 1;
|
||||
exit 127;
|
||||
}
|
||||
|
||||
2
debian/changelog
vendored
2
debian/changelog
vendored
@@ -20,6 +20,8 @@ xen-tools (4.3~dev-1) UNRELEASED; urgency=low
|
||||
- New option --apt_proxy (Closes: #610457; Thanks Alex Tomlins!)
|
||||
- Always write down root partition as first physical device, otherwise
|
||||
pygrub fails (Closes: #609673)
|
||||
- No more expect at least one option to mkfs.* calls. Fixes btrfs
|
||||
creation. (Closes: #609982)
|
||||
* Add dependency on openssh-client for ssh-keygen (Closes: #649108)
|
||||
* Use dh_auto_test for build time tests and add according
|
||||
build-dependencies on devscripts and libfile-slurp-perl.
|
||||
|
||||
Reference in New Issue
Block a user