# imagebuilder(1) completion                                       -*- shell-script -*-

_imagebuilder() 
{
    local cur prev opts
    COMPREPLY=()
    cur="${COMP_WORDS[COMP_CWORD]}"
    prev="${COMP_WORDS[COMP_CWORD-1]}"
    opts="info stop start delete shell clean create-image --help -h -s --script -n --no-colors -v --version"

    COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
}
complete -F _imagebuilder imagebuilder
