The default permissions of 1777 are correct, as `stat /tmp` on any Unix-like system will show. Using 1755 is nonsensical: it means that items in the directory can only be moved or deleted by their owners, but also that they can only be moved or deleted by the owner of the directory. In this case, that owner is root, who can ignore permissions anyway. This reverts commit 306350cf1cd85c3f3c890c076e989a2cd5ca6d9e. Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com> --- img/app/etc/fstab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/img/app/etc/fstab b/img/app/etc/fstab index 964d2131a84a8db5ed6613b61f14830416244b86..4a290d9710d177af0b787e67fd95a97fed4160c1 100644 --- a/img/app/etc/fstab +++ b/img/app/etc/fstab @@ -4,4 +4,4 @@ proc /proc proc defaults 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,mode=1755 0 0 +tmpfs /tmp tmpfs defaults 0 0 base-commit: ec60920e1e37295f93f1295fe6f441735bba2e41 -- Sincerely, Demi Marie Obenour (she/her/hers)