aboutsummaryrefslogtreecommitdiffstats
path: root/etc/profile-m-z/man.profile
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-02-16 17:19:46 +0000
committerLibravatar GitHub <noreply@github.com>2022-02-16 18:19:46 +0100
commit271edbbcf560e652c415839547a46e94b5b16a7f (patch)
tree65c05d2e8fa1e3e86d130618c622d226f2630832 /etc/profile-m-z/man.profile
parentRELNOTES: add bugfix/ci/docs (diff)
downloadfirejail-271edbbcf560e652c415839547a46e94b5b16a7f.tar.gz
firejail-271edbbcf560e652c415839547a46e94b5b16a7f.tar.zst
firejail-271edbbcf560e652c415839547a46e94b5b16a7f.zip
man.profile: remove read-only tmp to fix mandoc (#4950)
Having `read-only /tmp` yields the following: $ man ls [...] man: /usr/share/man/man1/ls.1.gz: SYSERR: mkstemp: /tmp/man.XXXXxxxxxx: Read-only file system [...] It also causes the pager (e.g.: less(1)) to not be called, which means that the entire man page is just printed all at once on the terminal. Environment: mandoc 1.14.6-1 on Artix Linux. Fixes #4927. Reported-by: @hyder365
Diffstat (limited to 'etc/profile-m-z/man.profile')
-rw-r--r--etc/profile-m-z/man.profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/profile-m-z/man.profile b/etc/profile-m-z/man.profile
index 9c5959091..2e28423f7 100644
--- a/etc/profile-m-z/man.profile
+++ b/etc/profile-m-z/man.profile
@@ -66,4 +66,4 @@ dbus-system none
66 66
67memory-deny-write-execute 67memory-deny-write-execute
68read-only ${HOME} 68read-only ${HOME}
69read-only /tmp 69#read-only /tmp # breaks mandoc (see #4927)