Remove pool with -f parameter.

The test pool will not removed if we do not force it.
This commit is contained in:
Wolfgang Link
2018-03-13 15:11:01 +01:00
committed by Thomas Lamprecht
parent 77445e9b80
commit c7b06c4f54

View File

@ -2643,7 +2643,7 @@ sub setup_zpool {
sub clean_up_zpool {
eval {
run_command("zpool destroy $subvol");
run_command("zpool destroy -f $subvol");
};
if ($@) {
warn $@;}