File: rados

package info (click to toggle)
ceph 0.80.7-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 32,900 kB
  • sloc: cpp: 371,527; ansic: 41,688; sh: 15,223; python: 9,402; makefile: 2,938; java: 1,488; asm: 1,073; xml: 227
file content (40 lines) | stat: -rw-r--r-- 1,198 bytes parent folder | download | duplicates (7)
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
#
# Ceph - scalable distributed file system
#
# Copyright (C) 2011 Wido den Hollander <wido@widodh.nl>
#
# 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.
#

_rados()
{
        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 -b --snap -i -o --create" -- ${cur}) )
            return 0
        fi

        case "${prev}" in
            --conf | -c | -o | -i)
                COMPREPLY=( $(compgen -f ${cur}) )
                return 0
                ;;
            -m)
                COMPREPLY=( $(compgen -A hostname ${cur}) )
                return 0
                ;;
            rados)
                COMPREPLY=( $(compgen -W "lspools mkpool rmpool df ls chown get put create rm listxattr getxattr setxattr rmxattr stat mapext lssnap mksnap rmsnap rollback bench" -- ${cur}) )
                return 0
            ;;
        esac
}
complete -F _rados rados