Skip to content

Commit

Permalink
relnotes
Browse files Browse the repository at this point in the history
  • Loading branch information
smitsohu committed Jan 18, 2022
1 parent c4e7912 commit d0c3b2b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,25 @@ INTRUSION DETECTION SYSTEM (IDS)
`````

### File descriptors
`````
--keep-fd=all
Inherit all open file descriptors to the sandbox. By default
only file descriptors 0, 1 and 2 are inherited to the sandbox,
and all other file descriptors are closed.
Example:
$ firejail --keep-fd=all
--keep-fd=file_descriptor
Don't close specified open file descriptors. By default only
file descriptors 0, 1 and 2 are inherited to the sandbox, and
all other file descriptors are closed.
Example:
$ firejail --keep-fd=3,4,5
`````

### Deteministic Shutdown
`````
--deterministic-exit-code
Expand All @@ -298,7 +317,7 @@ INTRUSION DETECTION SYSTEM (IDS)

### Network Monitor
`````
--nettrace=name|pid
--nettrace=name|pid
Monitor TCP and UDP traffic coming into the sandbox specified by
name or pid. Only networked sandboxes created with --net are
supported.
Expand Down
1 change: 1 addition & 0 deletions RELNOTES
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
firejail (0.9.67) baseline; urgency=low
* work in progress
* exit code: distinguish fatal signals by adding 128 (#4533)
* close file descriptors greater than 2 (--keep-fd) (#4845)
* intrusion detection system (--ids-init, --ids-check)
* deterministic shutdown (--deterministic-exit-code,
--deterministic-shutdown) (#4635)
Expand Down

0 comments on commit d0c3b2b

Please sign in to comment.