diff options
author | Stratos Psomadakis <psomas@grnet.gr> | 2011-11-07 10:24:35 +0100 |
---|---|---|
committer | Josh Durgin <josh.durgin@dreamhost.com> | 2011-11-07 18:27:15 +0100 |
commit | 4e518ed3ded428f607e0d5b063a6186ebfa1e30c (patch) | |
tree | 4f01842b665bdd2986757a82e8e67a9a38c4718a /src/bash_completion | |
parent | rbd.py: fix list when there are no images (diff) | |
download | ceph-4e518ed3ded428f607e0d5b063a6186ebfa1e30c.tar.xz ceph-4e518ed3ded428f607e0d5b063a6186ebfa1e30c.zip |
rbd: Document the rbd showmapped cmd
Document the rbd showmapped cmd in rbd.usage(), and rbd's man page,
and add it to the bash completion script.
Signed-off-by: Stratos Psomadakis <psomas@grnet.gr>
Diffstat (limited to 'src/bash_completion')
-rw-r--r-- | src/bash_completion/rbd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bash_completion/rbd b/src/bash_completion/rbd index 5b6ec0eff91..549dc119553 100644 --- a/src/bash_completion/rbd +++ b/src/bash_completion/rbd @@ -36,7 +36,7 @@ _rbd() return 0 ;; *) - COMPREPLY=( $(compgen -W "ls list info create resize rm export import cp copy mv rename snap watch map unmap" -- ${cur}) ) + COMPREPLY=( $(compgen -W "ls list info create resize rm export import cp copy mv rename snap watch map unmap showmapped" -- ${cur}) ) return 0 ;; esac |