call fsfreeze(8) on /boot to flush initramfs data & metadata to media
parent
611b8ae0d7
commit
de576db3c2
|
@ -1828,8 +1828,13 @@ fi
|
||||||
command -v restorecon &>/dev/null && restorecon -- "$outfile"
|
command -v restorecon &>/dev/null && restorecon -- "$outfile"
|
||||||
|
|
||||||
if ! sync "$outfile" 2> /dev/null; then
|
if ! sync "$outfile" 2> /dev/null; then
|
||||||
dinfo "dracut: sync operartion on newly created initramfs $outfile failed"
|
dinfo "dracut: sync operation on newly created initramfs $outfile failed"
|
||||||
exit 1
|
exit 1
|
||||||
|
# use fsfreeze only if we're not writing to /
|
||||||
|
elif ! [ "$(stat -c %m -- "$outfile")" == "/" ]; then
|
||||||
|
if ! $(fsfreeze -f $(dirname "$outfile") 2>/dev/null && fsfreeze -u $(dirname "$outfile") 2>/dev/null); then
|
||||||
|
dinfo "dracut: warning: could not fsfreeze $(dirname "$outfile")"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue