bash-completion/bash-completion-plague-client
Ville Skyttä 192263e892 - Work around potential login problem in profile.d snippet (#174355).
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.
2005-11-28 20:26:32 +00:00

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