-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrbd
More file actions
48 lines (44 loc) · 1.54 KB
/
Copy pathrbd
File metadata and controls
48 lines (44 loc) · 1.54 KB
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
#
# Ceph - scalable distributed file system
#
# Copyright (C) 2011 Wido den Hollander <[email protected]>
#
# This is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1, as published by the Free Software
# Foundation. See file COPYING.
#
_rbd()
{
local cur prev
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "-c --conf -m -d -f -p --pool --snap -i -o --image --dest --dest-pool --path --size --id --keyfile" -- ${cur}) )
return 0
fi
case "${prev}" in
--conf | -c | --path | --keyfile | --keyring)
COMPREPLY=( $(compgen -f ${cur}) )
return 0
;;
-m)
COMPREPLY=( $(compgen -A hostname ${cur}) )
return 0
;;
snap)
COMPREPLY=( $(compgen -W "ls create rollback rm purge protect unprotect" -- ${cur}) )
return 0
;;
lock)
COMPREPLY=( $(compgen -W "list add remove" -- ${cur}) )
return 0
;;
rbd)
COMPREPLY=( $(compgen -W "ls list info create clone flatten resize rm export import diff export-diff import-diff cp copy mv rename snap watch lock bench-write map unmap showmapped" -- ${cur}) )
return 0
;;
esac
}
complete -F _rbd rbd