- Perl, Debian, and scp patches applied upstream. - Patch to improve man completion: more sections, better filename handling. - Patch to speed up yum install/deplist completion (#478784). - Patch to fix and speed up rpm installed packages completion. - Update mock completion.
17 lines
391 B
Bash
17 lines
391 B
Bash
# bash completion for plague-client -*- sh -*-
|
|
|
|
_plague_client()
|
|
{
|
|
local cur
|
|
|
|
COMPREPLY=()
|
|
cur=`_get_cword`
|
|
|
|
[ $COMP_CWORD = 1 ] && \
|
|
COMPREPLY=( $( compgen -W 'build detail finish help is_paused kill list \
|
|
list_builders pause requeue unpause update_builders' -- $cur ) )
|
|
|
|
return 0
|
|
}
|
|
complete -F _plague_client plague-client
|