summaryrefslogtreecommitdiffstats
path: root/src/bash_completion/radosgw-admin
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/bash_completion/radosgw-admin
parentInitial commit. (diff)
downloadceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.tar.xz
ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--src/bash_completion/radosgw-admin57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/bash_completion/radosgw-admin b/src/bash_completion/radosgw-admin
new file mode 100644
index 000000000..023a83f87
--- /dev/null
+++ b/src/bash_completion/radosgw-admin
@@ -0,0 +1,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