diff --git a/extras/bash_completion.d/lynis b/extras/bash_completion.d/lynis index 1492b032..299f5a1e 100644 --- a/extras/bash_completion.d/lynis +++ b/extras/bash_completion.d/lynis @@ -19,7 +19,7 @@ _lynis() COMPREPLY=( $( compgen -W '--check-all --help --info --version' -- "$cur" ) ) ;; *) - COMPREPLY=( $( compgen -W '--check-all --help --info --version' -- "$cur" ) ) + COMPREPLY=( $( compgen -W 'audit --help --info --version' -- "$cur" ) ) ;; esac @@ -27,6 +27,13 @@ _lynis() fi case $prev in + audit) + COMPREPLY=( $( compgen -W 'dockerfile system ' -- "$cur" ) ) + ;; + show) + COMPREPLY=( $( compgen -W 'help version ' -- "$cur" ) ) + ;; + --auditor) COMPREPLY=( '"Mr. Auditor"' ) return 0 @@ -58,7 +65,7 @@ _lynis() *) COMPREPLY=( $( compgen -W ' \ --auditor --cronjob --debug --quick --quiet --logfile --no-colors --no-log --pentest --reverse-colors \ - --tests --tests-category --upload --view-categories' -- "$cur" ) ) + --tests --tests-category --upload --verbose --view-categories' -- "$cur" ) ) ;; esac