Imported 2.664.20

No reason for CPC update specified.
This commit is contained in:
CloudBuilder 2021-04-27 19:18:36 +00:00
parent 80c5a636f6
commit 7e2b6222d5
2 changed files with 11 additions and 1 deletions

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
livecd-rootfs (2.664.20) focal; urgency=medium
[ Gauthier Jolly ]
* ubuntu-cpc: secure esp mountpoint (LP: #1881006)
Change mount option for ubuntu-cpc images from "defaults" to "umask=0077"
ESP partitions might contain sensitive data and non-root users shouldn't
have read access on it.
-- Robert C Jennings <robert.jennings@canonical.com> Sat, 10 Apr 2021 05:20:11 -0500
livecd-rootfs (2.664.19) focal; urgency=medium
[ Patrick Viafore ]

View File

@ -94,7 +94,7 @@ create_and_mount_uefi_partition() {
mount "${uefi_dev}" "$mountpoint"/boot/efi
cat << EOF >> "mountpoint/etc/fstab"
LABEL=UEFI /boot/efi vfat defaults 0 1
LABEL=UEFI /boot/efi vfat umask=0077 0 1
EOF
}