~ubuntu-branches/ubuntu/utopic/ceph/utopic-proposed

« back to all changes in this revision

Viewing changes to src/bash_completion/rados

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2014-07-05 20:29:44 UTC
  • mto: This revision was merged to the branch mainline in revision 60.
  • Revision ID: package-import@ubuntu.com-20140705202944-g2if1aj5j7w2urkq
Tags: 0.80.1-2
* Megapatch from "firefly" branch with post-0.80.1 fixes.
* Patches for upstream bugs 8342, 8624 and some cherry-picks.
* New "bash-completion.patch" with Bash completion improvements.
* New patch to fix FTBFS on 'hppa' (Closes: #748571).
* "sample.ceph.conf.patch": minor update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
                COMPREPLY=( $(compgen -A hostname ${cur}) )
32
32
                return 0
33
33
                ;;
34
 
            *)
 
34
            rados)
35
35
                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}) )
36
36
                return 0
37
37
            ;;