From 1d9d75beb48cc8b6acf53a33094f931c0cae8b67 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Mon, 5 Jul 2010 19:36:11 -0300 Subject: Mount tmpfs filesystems with mode=0755 Signed-off-by: Gerardo Exequiel Pozzi --- archiso/hooks/archiso | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archiso') diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso index d979ef4..ae98231 100644 --- a/archiso/hooks/archiso +++ b/archiso/hooks/archiso @@ -76,12 +76,12 @@ archiso_mount_handler() { newroot="${1}" msg -n ":: Mounting tmpfs, size=${tmpfs_size}..." - mount -t tmpfs -o "size=${tmpfs_size}" tmpfs /tmpfs + mount -t tmpfs -o "size=${tmpfs_size}",mode=0755 tmpfs /tmpfs msg "done." if [ "${copytoram}" = "y" ]; then msg -n ":: Mounting tmpfs (for squashfs), size=${tmpfs_sqfs_size}..." - mount -t tmpfs -o "size=${tmpfs_sqfs_size}" tmpfs /tmpfs.sqfs + mount -t tmpfs -o "size=${tmpfs_sqfs_size}",mode=0755 tmpfs /tmpfs.sqfs msg "done." fi -- cgit v1.2.3-54-g00ecf