diff options
Diffstat (limited to 'bash-completion/setpriv')
-rw-r--r-- | bash-completion/setpriv | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bash-completion/setpriv b/bash-completion/setpriv index 69df34b..766bbcb 100644 --- a/bash-completion/setpriv +++ b/bash-completion/setpriv @@ -87,6 +87,16 @@ _setpriv_module() COMPREPLY=( $(compgen -W "profile" -- $cur) ) return 0 ;; + '--landlock-access') + # FIXME: how to list landlock accesses? + COMPREPLY=( $(compgen -W "access" -- $cur) ) + return 0 + ;; + '--landlock-rule') + # FIXME: how to list landlock rules? + COMPREPLY=( $(compgen -W "rule" -- $cur) ) + return 0 + ;; '-h'|'--help'|'-V'|'--version') return 0 ;; @@ -112,6 +122,8 @@ _setpriv_module() --reset-env --selinux-label --apparmor-profile + --landlock-access + --landlock-rule --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) |