Merge pull request #483 from rusty-snake/add-seccomp-fd-completions

Add --add-seccomp-fd to bash/zsh completion
This commit is contained in:
Simon McVittie
2022-03-22 17:52:50 +00:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ _bwrap() {
# Please keep sorted in LC_ALL=C order
local options_with_args="
$boolean_optons
--add-seccomp-fd
--args
--bind
--bind-data

View File

@@ -14,6 +14,7 @@ _bwrap_args=(
$_bwrap_args_after_perms
# Please sort alphabetically (in LC_ALL=C order) by option name
'--add-seccomp-fd[Load and use seccomp rules from FD]: :_guard "[0-9]#" "file descriptor to read seccomp rules from"'
'--args[Parse NUL-separated args from FD]: :_guard "[0-9]#" "file descriptor with NUL-separated arguments"'
'--as-pid-1[Do not install a reaper process with PID=1]'
'--bind-try[Equal to --bind but ignores non-existent SRC]:source:_files:destination:_files'