Skip to content

Commit

Permalink
fix(dracut.sh): also prevent fsfreeze for tmpfs
Browse files Browse the repository at this point in the history
KERNEL_INSTALL_STAGING_AREA is often on tmpfs, it cannot be frozen

Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
  • Loading branch information
AndrewAmmerlaan authored and aafeijoo-suse committed Jun 26, 2023
1 parent 4000a1e commit 09d3ec1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dracut.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2594,6 +2594,9 @@ freeze_ok_for_fstype() {
zfs)
return 1
;;
tmpfs)
return 1
;;
btrfs)
freeze_ok_for_btrfs "$outfile"
;;
Expand Down

0 comments on commit 09d3ec1

Please sign in to comment.