diff --git a/debian/changelog b/debian/changelog index 54c5a6a..a64a923 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,15 @@ +calamares-settings-debian (10.0.24-1) unstable; urgency=medium + + * New upstream release + - Fix path in previous CVE bug fix + + -- Jonathan Carter Wed, 03 Jul 2019 13:29:07 +0000 + calamares-settings-debian (10.0.23-1) unstable; urgency=medium - * Fixes permissions for initramfs image (CVE-2019-13179) - (Closes: #931373) + * New upstream release + - Fixes permissions for initramfs image (CVE-2019-13179) + (Closes: #931373) -- Jonathan Carter Wed, 03 Jul 2019 13:05:47 +0000 diff --git a/scripts/bootloader-config b/scripts/bootloader-config index 7b3c7fe..71405bb 100755 --- a/scripts/bootloader-config +++ b/scripts/bootloader-config @@ -5,7 +5,7 @@ CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc # Set secure permissions for the initramfs, # the initramfs is re-generated later in the installation process # so we only set the permissions without regenerating the initramfs now: -echo "UMASK=0077" > /etc/initramfs-tools/conf.d/initramfs-permissions +echo "UMASK=0077" > $CHROOT/etc/initramfs-tools/conf.d/initramfs-permissions echo "Running bootloader-config..."