mirror of
https://github.com/CISOfy/lynis.git
synced 2025-07-23 05:44:45 +02:00
Added bash completion script for Lynis
This commit is contained in:
parent
2006838144
commit
61c3fcd5c3
76
dev/bash_completion.d/lynis
Normal file
76
dev/bash_completion.d/lynis
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
# bash completion for lynis
|
||||||
|
|
||||||
|
# version 1.0.0 (22 September 2014)
|
||||||
|
# Michael Boelen <michael.boelen@cisofy.com>
|
||||||
|
|
||||||
|
# lynis(8) completion
|
||||||
|
_lynis()
|
||||||
|
{
|
||||||
|
local cur prev
|
||||||
|
# opts nodig nosig
|
||||||
|
|
||||||
|
COMPREPLY=()
|
||||||
|
_get_comp_words_by_ref cur prev
|
||||||
|
|
||||||
|
if [ $COMP_CWORD -eq 1 ]; then
|
||||||
|
# first parameter on line
|
||||||
|
case $cur in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=( $( compgen -W '--check-all --help --info --version' -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
COMPREPLY=( $( compgen -W '--check-all --help --info --version' -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
case $prev in
|
||||||
|
--auditor)
|
||||||
|
COMPREPLY=( '"Mr. Auditor"' )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
--check-update|--help|--info|--version)
|
||||||
|
# all other options are noop with this command
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
--logfile)
|
||||||
|
COMPREPLY=( 'myfile.log' )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
--plugin-dir)
|
||||||
|
_filedir -d
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
--profile)
|
||||||
|
COMPREPLY=( 'default.prf' )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
--tests)
|
||||||
|
COMPREPLY=( '"TEST-0001 TEST-0002 TEST-0003"' )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
--tests-category)
|
||||||
|
COMPREPLY=( '"accounting authentication"' )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
COMPREPLY=( $( compgen -W ' \
|
||||||
|
--auditor --cronjob --debug --quick --quiet --logfile --no-colors --no-log --pentest --reverse-colors \
|
||||||
|
--tests --tests-category --upload --view-categories' -- "$cur" ) )
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
complete -F _lynis lynis
|
||||||
|
|
||||||
|
# Local variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-basic-offset: 4
|
||||||
|
# sh-indent-comment: t
|
||||||
|
# indent-tabs-mode: nil
|
||||||
|
# End:
|
||||||
|
# ex: ts=4 sw=4 et filetype=sh
|
Loading…
x
Reference in New Issue
Block a user