mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-21 06:45:29 -06:00
etc: Support local customizations in *.inc
This is useful for places, like hashbang.sh, which have site-specific modifications of the *.inc files. With the current setup, the package manager cannot automatically install updated versions of those files, as it would need to somehow merge the site-specific and upstream changes. Having the site-specific changes in separate files solves this.
This commit is contained in:
parent
cd4a14d02a
commit
ec719b9e0f
10 changed files with 20 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
|||
# Local customizations come here
|
||||
include /etc/firejail/disable-common.local
|
||||
|
||||
# History files in $HOME
|
||||
blacklist-nolog ${HOME}/.history
|
||||
blacklist-nolog ${HOME}/.*_history
|
||||
|
|
|
|||
1
etc/disable-common.local
Normal file
1
etc/disable-common.local
Normal file
|
|
@ -0,0 +1 @@
|
|||
# This file is meant for local customizations of disable-common.local
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
# Local customizations come here
|
||||
include /etc/firejail/disable-devel.local
|
||||
|
||||
# development tools
|
||||
|
||||
# GCC
|
||||
|
|
|
|||
1
etc/disable-devel.local
Normal file
1
etc/disable-devel.local
Normal file
|
|
@ -0,0 +1 @@
|
|||
# This file is meant for local customizations of disable-devel.local
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
# Local customizations come here
|
||||
include /etc/firejail/disable-passwdmgr.local
|
||||
|
||||
blacklist ${HOME}/.pki/nssdb
|
||||
blacklist ${HOME}/.lastpass
|
||||
blacklist ${HOME}/.keepassx
|
||||
|
|
|
|||
1
etc/disable-passwdmgr.local
Normal file
1
etc/disable-passwdmgr.local
Normal file
|
|
@ -0,0 +1 @@
|
|||
# This file is meant for local customizations of disable-passwdmgr.local
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
# Local customizations come here
|
||||
include /etc/firejail/disable-programs.local
|
||||
|
||||
blacklist ${HOME}/.*coin
|
||||
blacklist ${HOME}/.8pecxstudios
|
||||
blacklist ${HOME}/.Atom
|
||||
|
|
|
|||
1
etc/disable-programs.local
Normal file
1
etc/disable-programs.local
Normal file
|
|
@ -0,0 +1 @@
|
|||
# This file is meant for local customizations of disable-programs.local
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
# Local customizations come here
|
||||
include /etc/firejail/whitelist-common.local
|
||||
|
||||
# common whitelist for all profiles
|
||||
|
||||
whitelist ~/.XCompose
|
||||
|
|
|
|||
1
etc/whitelist-common.local
Normal file
1
etc/whitelist-common.local
Normal file
|
|
@ -0,0 +1 @@
|
|||
# This file is meant for local customizations of whitelist-common.local
|
||||
Loading…
Add table
Add a link
Reference in a new issue