Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewc12 committed May 19, 2024
1 parent a9575fd commit fa7678f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions contrib/windows/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,14 @@ def zpool_create(
*[str(d) for d in devices],
],
)
print([
"create",
"-f",
*options_to_args("-o", zpool_options),
*options_to_args("-O", zfs_options),
name,
*[str(d) for d in devices],
])
if res.returncode != 0:
raise RuntimeError("Failed to create zpool")

Expand Down

0 comments on commit fa7678f

Please sign in to comment.