blob: 5ac3a04dd80bb70ed754f2e25ff74bb791f55758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Bash completion function for qualudis
# Written by Mike Kelly
# vim: set et sw=4 sts=4 ts=4 ft=sh :
# NOTE: This is still a work in progress, don't expect it to work well or
# properly right now.
_qualudis_get_repodir() {
local repodir starting_dir="${1}"
[[ -f ./profiles/repo_name ]] && repodir=$(readlink -f ${starting_dir})
[[ -z "${repodir}" && -f ../profiles/repo_name ]] \
&& repodir=$(readlink -f ${starting_dir}/..)
[[ -z "${repodir}" && -f ../../profiles/repo_name ]] \
&& repodir=$(readlink -f ${starting_dir}/../..)
[[ -z "${repodir}" ]] && return 1
echo "${repodir}"
}
_qualudis() {
local cur prev opts repodir
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD-1]}
# Figure out what our repository dir is
[[ -d ${cur} ]] && repodir="$(_qualudis_get_repodir "${cur}")"
[[ -z "${repodir}" ]] && repodir="$(_qualudis_get_repodir "$(pwd)")"
opts="--version -V \
--help -h \
--log-level -L \
--message-level -M \
--write-cache-dir \
--master-repository-name \
--extra-repository-dir \
--use-repository-cache \
--show-associated-keys"
case "${cur}" in
-*)
COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
return 0
;;
*)
case "${prev}" in
## Enum operators
--log-level|-L)
COMPREPLY=($(compgen -W "debug qa warning silent" -- "${cur}"))
return 0
;;
--message-level|-M)
COMPREPLY=($(compgen -W "debug maybe minor normal severe" -- "${cur}"))
return 0
;;
*)
_filedir -d
;;
esac
;;
esac
}
complete -o filenames -F _qualudis qualudis
|