aboutsummaryrefslogtreecommitdiffstats
path: root/src/man
diff options
context:
space:
mode:
authorLibravatar rusty-snake <print_hello_world+Public@protonmail.com>2019-08-22 13:04:24 +0200
committerLibravatar rusty-snake <print_hello_world+Public@protonmail.com>2019-08-22 13:04:24 +0200
commit8dfe3eb5656e17af51d700038cb2bc29a9a53a0c (patch)
tree4b98edf23ce15da6c67ee928465773505bfcfac2 /src/man
parentEnable private-bin in transmission-daemon (diff)
downloadfirejail-8dfe3eb5656e17af51d700038cb2bc29a9a53a0c.tar.gz
firejail-8dfe3eb5656e17af51d700038cb2bc29a9a53a0c.tar.zst
firejail-8dfe3eb5656e17af51d700038cb2bc29a9a53a0c.zip
various fixes and improvements
- install contrib/syscalls.sh - add GitLab-CI status to README.md - read-only ${HOME}/.cargo/env - move blacklist ${HOME}/.cargo/registry, ${HOME}/.cargo/config to disable-programs - typo in man firejail firejail-profiles firecfg - better descriptions in man firejail-profiles - fixes in man firejail - template descriptions in firejail-profiles
Diffstat (limited to 'src/man')
-rw-r--r--src/man/firecfg.txt2
-rw-r--r--src/man/firejail-profile.txt16
-rw-r--r--src/man/firejail.txt4
3 files changed, 14 insertions, 8 deletions
diff --git a/src/man/firecfg.txt b/src/man/firecfg.txt
index b418faa15..2887a6c53 100644
--- a/src/man/firecfg.txt
+++ b/src/man/firecfg.txt
@@ -42,7 +42,7 @@ The following actions are implemented by default by running sudo firecfg:
42.br 42.br
43 43
44.br 44.br
45-fix desktop files in $HOME/.local/share/applications/ (firecfg --fix). 45- fix desktop files in $HOME/.local/share/applications/ (firecfg --fix).
46.RE 46.RE
47 47
48.SH OPTIONS 48.SH OPTIONS
diff --git a/src/man/firejail-profile.txt b/src/man/firejail-profile.txt
index 74f99b538..3db8c782d 100644
--- a/src/man/firejail-profile.txt
+++ b/src/man/firejail-profile.txt
@@ -75,7 +75,13 @@ Child process initialized
75.RE 75.RE
76 76
77.SH Templates 77.SH Templates
78Templates for writing own profiles can be found in /usr/share/doc/firejail. 78In /usr/share/doc/firejail there are two templates to write new profiles.
79.RS
80profile.template - for regular profiles
81.br
82redirect_alias-profile.template - for aliasing/redirecting profiles
83.RE
84
79 85
80.SH Scripting 86.SH Scripting
81Scripting commands: 87Scripting commands:
@@ -144,7 +150,7 @@ Ignore command.
144 150
145Example: "ignore seccomp" 151Example: "ignore seccomp"
146.br 152.br
147Example: "ignore net ehh0" 153Example: "ignore net eth0"
148 154
149.TP 155.TP
150\fBquiet 156\fBquiet
@@ -154,10 +160,10 @@ Example: "quiet"
154 160
155.SH Filesystem 161.SH Filesystem
156These profile entries define a chroot filesystem built on top of the existing 162These profile entries define a chroot filesystem built on top of the existing
157host filesystem. Each line describes a file element that is removed from 163host filesystem. Each line describes a file/directory that is inaccessible
158the filesystem (\fBblacklist\fR), a read-only file or directory (\fBread-only\fR), 164(\fBblacklist\fR), a read-only file or directory (\fBread-only\fR),
159a tmpfs mounted on top of an existing directory (\fBtmpfs\fR), 165a tmpfs mounted on top of an existing directory (\fBtmpfs\fR),
160or mount-bind a directory or file on top of another directory or file (\fBbind\fR). 166or mount-bind a directory or file on top of another directory or file (\fBbind\fR).
161Use \fBprivate\fR to set private mode. 167Use \fBprivate\fR to set private mode.
162File globbing is supported, and PATH and HOME directories are searched. 168File globbing is supported, and PATH and HOME directories are searched.
163Examples: 169Examples:
diff --git a/src/man/firejail.txt b/src/man/firejail.txt
index 951618669..86b76f58f 100644
--- a/src/man/firejail.txt
+++ b/src/man/firejail.txt
@@ -71,10 +71,10 @@ If an appropriate profile is not found, Firejail will use a default profile.
71The default profile is quite restrictive. In case the application doesn't work, use --noprofile option 71The default profile is quite restrictive. In case the application doesn't work, use --noprofile option
72to disable it. For more information, please see \fBSECURITY PROFILES\fR section below. 72to disable it. For more information, please see \fBSECURITY PROFILES\fR section below.
73.PP 73.PP
74If a program argument is not specified, Firejail starts /bin/bash shell. 74If a program argument is not specified, Firejail starts the default shell from the current user.
75Examples: 75Examples:
76.PP 76.PP
77$ firejail [OPTIONS] # starting a /bin/bash shell 77$ firejail [OPTIONS] # starting the user default shell (normally /bin/bash)
78.PP 78.PP
79$ firejail [OPTIONS] firefox # starting Mozilla Firefox 79$ firejail [OPTIONS] firefox # starting Mozilla Firefox
80.PP 80.PP