Merge commit 'refs/pull/13/head' of github.com:archlinux/arch-install-scripts

This commit is contained in:
Morten Linderud 2022-06-02 22:24:27 +02:00
commit 2052c61529
No known key found for this signature in database
GPG Key ID: 9C02FF419FECBE16

2
common
View File

@ -89,7 +89,7 @@ chroot_setup() {
chroot_add_mount udev "$1/dev" -t devtmpfs -o mode=0755,nosuid &&
chroot_add_mount devpts "$1/dev/pts" -t devpts -o mode=0620,gid=5,nosuid,noexec &&
chroot_add_mount shm "$1/dev/shm" -t tmpfs -o mode=1777,nosuid,nodev &&
chroot_add_mount /run "$1/run" --bind &&
chroot_add_mount /run "$1/run" --bind -r &&
chroot_add_mount tmp "$1/tmp" -t tmpfs -o mode=1777,strictatime,nodev,nosuid
}