aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--RELNOTES6
-rw-r--r--src/firejail/usage.c1
-rw-r--r--src/man/firejail.txt10
4 files changed, 17 insertions, 2 deletions
diff --git a/README b/README
index 22bace801..a423c15d6 100644
--- a/README
+++ b/README
@@ -18,6 +18,8 @@ License: GPL v2
18Firejail Authors: 18Firejail Authors:
19 19
20netblue30 (netblue30@yahoo.com) 20netblue30 (netblue30@yahoo.com)
21greigdp (https://github.com/greigdp)
22 - add Spotify profile
21Mattias Wadman (https://github.com/wader) 23Mattias Wadman (https://github.com/wader)
22 - seccomp errno filter support 24 - seccomp errno filter support
23Peter Millerchip (https://github.com/pmillerchip) 25Peter Millerchip (https://github.com/pmillerchip)
diff --git a/RELNOTES b/RELNOTES
index 6428b8982..a61f190d4 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,8 +1,10 @@
1firejail (0.9.31) baseline; urgency=low 1firejail (0.9.31) baseline; urgency=low
2 * lots of security profile changes
3 * added FBReader default profile
4 * added --interface option 2 * added --interface option
3 * added --mtu option
5 * added seccomp errno support 4 * added seccomp errno support
5 * added FBReader default profile
6 * added Spotify default profile
7 * lots of default security profile changes
6 * bugfixes 8 * bugfixes
7 -- netblue30 <netblue30@yahoo.com> current development 9 -- netblue30 <netblue30@yahoo.com> current development
8 10
diff --git a/src/firejail/usage.c b/src/firejail/usage.c
index 5154caf77..b4024ff6f 100644
--- a/src/firejail/usage.c
+++ b/src/firejail/usage.c
@@ -100,6 +100,7 @@ void usage(void) {
100 printf("\t--join=pid - join the sandbox identified by PID.\n\n"); 100 printf("\t--join=pid - join the sandbox identified by PID.\n\n");
101 printf("\t--list - list all sandboxes.\n\n"); 101 printf("\t--list - list all sandboxes.\n\n");
102 printf("\t--mac=xx:xx:xx:xx:xx:xx - set interface MAC address.\n\n"); 102 printf("\t--mac=xx:xx:xx:xx:xx:xx - set interface MAC address.\n\n");
103 printf("\t--mtu=number - set interface MTU.\n\n");
103 printf("\t--name=name - set sandbox hostname.\n\n"); 104 printf("\t--name=name - set sandbox hostname.\n\n");
104 printf("\t--net=bridgename - enable network namespaces and connect to this bridge\n"); 105 printf("\t--net=bridgename - enable network namespaces and connect to this bridge\n");
105 printf("\t\tdevice. Unless specified with option --ip and --defaultgw, an\n"); 106 printf("\t\tdevice. Unless specified with option --ip and --defaultgw, an\n");
diff --git a/src/man/firejail.txt b/src/man/firejail.txt
index 2d1c40566..6984c559b 100644
--- a/src/man/firejail.txt
+++ b/src/man/firejail.txt
@@ -443,6 +443,16 @@ Example:
443$ firejail \-\-net=eth0 \-\-mac=00:11:22:33:44:55 firefox 443$ firejail \-\-net=eth0 \-\-mac=00:11:22:33:44:55 firefox
444 444
445.TP 445.TP
446\fB\-\-mtu=number
447Assign a MTU value to the last network interface defined by a \-\-net option.
448.br
449
450.br
451Example:
452.br
453$ firejail \-\-net=eth0 \-\-mtu=1492
454
455.TP
446\fB\-\-name=name 456\fB\-\-name=name
447Set sandbox hostname. Several options, such as \-\-join and \-\-shutdown, can use 457Set sandbox hostname. Several options, such as \-\-join and \-\-shutdown, can use
448this name to identify a sandbox. 458this name to identify a sandbox.