/usr/share/bash-completion/completions/radosgw-admin is in radosgw 10.2.11-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# 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.
#
_radosgw_admin()
{
local cur prev
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "--uid --subuser --access-key --os-user --email --auth_uid --secret --os-secret --gen-access-key --gen-secret \
--access --display-name --bucket --object --date --conf --name --id --version -s -w" -- ${cur}) )
return 0
fi
case "${prev}" in
--conf | -c)
COMPREPLY=( $(compgen -f ${cur}) )
return 0
;;
-m)
COMPREPLY=( $(compgen -A hostname ${cur}) )
return 0
;;
user)
COMPREPLY=( $(compgen -W "create modify info rm" -- ${cur}) )
return 0
;;
subuser)
COMPREPLY=( $(compgen -W "create modify rm" -- ${cur}) )
return 0
;;
key)
COMPREPLY=( $(compgen -W "create rm" -- ${cur}) )
return 0
;;
buckets)
COMPREPLY=( $(compgen -W "list unlink" -- ${cur}) )
return 0
;;
*)
COMPREPLY=( $(compgen -W "user subuser key buckets policy log" -- ${cur}) )
return 0
;;
esac
}
complete -F _radosgw_admin radosgw-admin
|