192263e892
Sat Nov 26 2005 Ville Skyttä <ville.skytta at iki.fi> - Don't mark the main source file as %config. - Make profile.d snippet non-executable (#35714) and noreplace. - Add mock, plague-client and repomanage completion. - Allow "cvs stat" completion. - Macroize trigger creation.
17 lines
404 B
Bash
17 lines
404 B
Bash
# bash completion for plague-client -*- sh -*-
|
|
|
|
_plague_client()
|
|
{
|
|
local cur
|
|
|
|
COMPREPLY=()
|
|
cur=${COMP_WORDS[COMP_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
|