/tmp should always be 1755 and stuff will break if it is not. Also fix a whitespace issue that had no functional impact. Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com> --- img/app/etc/fstab | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/img/app/etc/fstab b/img/app/etc/fstab index a95088b0552a05b059e86ff970fddef33f02b944..964d2131a84a8db5ed6613b61f14830416244b86 100644 --- a/img/app/etc/fstab +++ b/img/app/etc/fstab @@ -1,7 +1,7 @@ # SPDX-License-Identifier: CC0-1.0 # SPDX-FileCopyrightText: 2020-2022 Alyssa Ross <hi@alyssa.is> proc /proc proc defaults 0 0 -devpts /dev/pts devpts defaults,gid=4,mode=620 0 0 +devpts /dev/pts devpts defaults,gid=4,mode=620 0 0 tmpfs /dev/shm tmpfs defaults 0 0 sysfs /sys sysfs defaults 0 0 -tmpfs /tmp tmpfs defaults 0 0 +tmpfs /tmp tmpfs defaults,mode=1755 0 0 -- Sincerely, Demi Marie Obenour (she/her/hers)