mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-21 06:45:29 -06:00
Main changes:
* Remove the space after `#` for commented code lines to distinguish
them from normal comments
* Use `#` instead of `-` for comments at the end of the line so that
commented code lines work after being uncommented
Commands used to search and replace:
arg0="$(cat contrib/syntax/lists/profile_commands_arg0.list |
LC_ALL=C sort -u | tr '\n' '|' | sed -e 's/|$//' -e 's/\./\\./g')"
arg1="$(cat contrib/syntax/lists/profile_commands_arg1.list |
LC_ALL=C sort -u | tr '\n' '|' | sed -e 's/|$//' -e 's/\./\\./g')"
git ls-files -z -- etc/inc etc/profile* | xargs -0 -I '{}' \
sh -c "printf '%s\n' \"\$(sed -E \
-e 's/^# ($arg0)( [#-]-? .*)?\$/#\\1\\2/' \
-e 's/^# ($arg1)( [^ ]*)?( [#-]-? .*)?\$/#\\1\\2\\3/' \
-e 's/^# (whitelist \\$)/#\\1/' \
-e 's/^(#[^ ].+) --? /\\1 # /' \
'{}')\" >'{}'"
Commands used to check for leftover entries:
arg0="$(cat contrib/syntax/lists/profile_commands_arg0.list |
LC_ALL=C sort -u | tr '\n' '|' | sed -e 's/|$//' -e 's/\./\\./g')"
arg1="$(cat contrib/syntax/lists/profile_commands_arg1.list |
LC_ALL=C sort -u | tr '\n' '|' | sed -e 's/|$//' -e 's/\./\\./g')"
git grep -E "^# ($arg0|$arg1)( +|$)" -- etc/inc etc/profile*
See also commit 30f9ad908 ("build: improve comments in firecfg.config",
2023-08-05) / PR #5942.
65 lines
1.6 KiB
Text
65 lines
1.6 KiB
Text
# Firejail profile for ephemeral
|
|
# Description: The always-incognito web browser
|
|
# This file is overwritten after every install/update
|
|
# Persistent local customizations
|
|
include ephemeral.local
|
|
# Persistent global definitions
|
|
include globals.local
|
|
|
|
# enforce private-cache
|
|
#noblacklist ${HOME}/.cache/ephemeral
|
|
|
|
noblacklist ${HOME}/.local/share/pki
|
|
noblacklist ${HOME}/.pki
|
|
|
|
# noexec ${HOME} breaks DRM binaries.
|
|
?BROWSER_ALLOW_DRM: ignore noexec ${HOME}
|
|
|
|
include disable-common.inc
|
|
include disable-devel.inc
|
|
include disable-exec.inc
|
|
include disable-interpreters.inc
|
|
include disable-programs.inc
|
|
|
|
# enforce private-cache
|
|
#mkdir ${HOME}/.cache/ephemeral
|
|
mkdir ${HOME}/.local/share/pki
|
|
mkdir ${HOME}/.pki
|
|
# enforce private-cache
|
|
#whitelist ${HOME}/.cache/ephemeral
|
|
whitelist ${HOME}/.local/share/pki
|
|
whitelist ${HOME}/.pki
|
|
whitelist ${DOWNLOADS}
|
|
include whitelist-common.inc
|
|
include whitelist-usr-share-common.inc
|
|
include whitelist-var-common.inc
|
|
|
|
apparmor
|
|
caps.drop all
|
|
# machine-id breaks pulse audio; it should work fine in setups where sound is not required.
|
|
#machine-id
|
|
netfilter
|
|
nodvd
|
|
nogroups
|
|
noinput
|
|
nonewprivs
|
|
# noroot breaks GTK_USE_PORTAL=1 usage, see https://github.com/netblue30/firejail/issues/2506.
|
|
noroot
|
|
notv
|
|
?BROWSER_DISABLE_U2F: nou2f
|
|
protocol unix,inet,inet6,netlink
|
|
seccomp
|
|
tracelog
|
|
|
|
disable-mnt
|
|
private-cache
|
|
?BROWSER_DISABLE_U2F: private-dev
|
|
# private-etc below works fine on most distributions. There are some problems on CentOS.
|
|
#private-etc @tls-ca,@x11,mailcap,mime.types,os-release
|
|
private-tmp
|
|
|
|
# breaks preferences
|
|
#dbus-user none
|
|
#dbus-system none
|
|
|
|
restrict-namespaces
|