From: Harald Hoyer Date: Fri, 8 Jan 2016 10:37:25 +0000 (+0100) Subject: dracut.sh: restorecon final image file X-Git-Tag: 045~205 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60928f36b6c9a855077506444ea5edbe6be9ec4c;p=thirdparty%2Fdracut.git dracut.sh: restorecon final image file Instead of "mv" use "cp --reflink=auto" and restorecon the final image --- diff --git a/dracut.sh b/dracut.sh index a2fc49683..6dc98582e 100755 --- a/dracut.sh +++ b/dracut.sh @@ -1724,6 +1724,8 @@ if (( maxloglvl >= 5 )); then fi fi +umask 077 + if [[ $uefi = yes ]]; then if [[ $kernel_cmdline ]]; then echo -n "$kernel_cmdline" > "$uefi_outdir/cmdline.txt" @@ -1749,7 +1751,7 @@ if [[ $uefi = yes ]]; then --add-section .linux="$kernel_image" --change-section-vma .linux=0x40000 \ --add-section .initrd="${DRACUT_TMPDIR}/initramfs.img" --change-section-vma .initrd=0x3000000 \ "$uefi_stub" "${uefi_outdir}/linux.efi" \ - && mv "${uefi_outdir}/linux.efi" "$outfile"; then + && cp --reflink=auto "${uefi_outdir}/linux.efi" "$outfile"; then dinfo "*** Creating UEFI image file '$outfile' done ***" else rm -f -- "$outfile" @@ -1757,7 +1759,7 @@ if [[ $uefi = yes ]]; then exit 1 fi else - if mv "${DRACUT_TMPDIR}/initramfs.img" "$outfile"; then + if cp --reflink=auto "${DRACUT_TMPDIR}/initramfs.img" "$outfile"; then dinfo "*** Creating initramfs image file '$outfile' done ***" else rm -f -- "$outfile" @@ -1766,5 +1768,6 @@ else fi fi +command -v restorecon &>/dev/null && restorecon -- "$outfile" exit 0