Skip to content

Commit

Permalink
Suppress unneeded mke2fs logging
Browse files Browse the repository at this point in the history
  • Loading branch information
struanb committed Jan 7, 2024
1 parent a046735 commit 29eb732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runcvm-scripts/runcvm-ctr-qemu
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ do_disk() {
fi

busybox truncate -s "$size" "$src" >&2 || error "Error: disk spec '$spec' invalid: truncate on '$src' with size '$size' failed"
mke2fs -F -t "$fs" "$src" >&2 || error "Error: disk spec '$spec' invalid: mke2fs on '$src' with fs '$fs' failed"
mke2fs -q -F -t "$fs" "$src" >&2 || error "Error: disk spec '$spec' invalid: mke2fs on '$src' with fs '$fs' failed"
fi

UUID=$(blkid -o value "$src" | head -n 1)
Expand Down

0 comments on commit 29eb732

Please sign in to comment.