aboutsummaryrefslogtreecommitdiffstats
path: root/src/man/firejail-profile.txt
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2017-02-09 09:03:35 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2017-02-09 09:03:35 -0500
commit85c8cc454d3df3a83667556f7ddfafe66a78d421 (patch)
tree959478baa7851914746796128dbb9bba732b645a /src/man/firejail-profile.txt
parentfiremon fix (diff)
downloadfirejail-85c8cc454d3df3a83667556f7ddfafe66a78d421.tar.gz
firejail-85c8cc454d3df3a83667556f7ddfafe66a78d421.tar.zst
firejail-85c8cc454d3df3a83667556f7ddfafe66a78d421.zip
adding macro for include command in profile files
Diffstat (limited to 'src/man/firejail-profile.txt')
-rw-r--r--src/man/firejail-profile.txt16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/man/firejail-profile.txt b/src/man/firejail-profile.txt
index 90dca19bf..aa1aec567 100644
--- a/src/man/firejail-profile.txt
+++ b/src/man/firejail-profile.txt
@@ -81,14 +81,20 @@ Include other.profile file.
81 81
82Example: "include /etc/firejail/disable-common.inc" 82Example: "include /etc/firejail/disable-common.inc"
83 83
84other.profile file name can be prefixed with ${HOME}. This will force Firejail to look for the 84The file name can be prefixed with a macro such as ${HOME} or ${CFG}.
85file in user home directory. 85${HOME} is expanded as user home directory, and ${CFG} is expanded as
86Firejail system configuration directory - in most cases /etc/firejail or
87/usr/local/etc/firejail.
86 88
87Example: "include ${HOME}/myprofiles/profile1" will load "~/myprofiles/profile1" file. 89Example: "include ${HOME}/myprofiles/profile1" will load "~/myprofiles/profile1" file.
88 90
89If the file is not found, and the file name does not end in ".local", the sandbox exist immediately 91Example: "include ${CFG}/firefox.profile" will load "/etc/firejail/firefox.profile" file.
90with an error printed on stderr. ".local" files can be used to customize the global configuration 92
91in /etc/firejail directory. These files are not overwritten during software install. 93System configuration files in ${CFG} are overwritten during software installation.
94Persistent configuration at system level is handled in ".local" files. For every
95profile file in ${CFG} directory, the user can create a corresponding .local file
96storing modifications to the persistent configuration. Persistent .local files
97are included at the start of regular profile files.
92 98
93.TP 99.TP
94\fBnoblacklist file_name 100\fBnoblacklist file_name