Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions rel/files/riak-admin
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ usage() {
echo " reip | reip_manual | erl-reload | wait-for-service | "
echo " ringready | transfers | force-remove | down |"
echo " cluster-info | member-status | ring-status | vnode-status |"
echo " tictacaae <subcommand> |"
echo " tictacaae <subcommand> | node <subcommand> |"
echo " aae-status | diag | stat | status | transfer-limit | reformat-indexes |"
echo " top [-interval N] [-sort reductions|memory|msg_q] [-lines N] |"
echo " downgrade-objects | security | bucket-type | repair-2i |"
Expand Down Expand Up @@ -619,9 +619,12 @@ The follow commands can be used to manage bucket types for the cluster:

tictacaae_admin()
{
# this command will print usage in erlang code
rpc riak_kv_console command $SCRIPT tictacaae "$@"
}
node_admin()
{
rpc riak_kv_console command $SCRIPT node "$@"
}



Expand Down Expand Up @@ -1039,6 +1042,10 @@ case "$1" in
shift
tictacaae_admin "$@"
;;
node)
shift
node_admin "$@"
;;
*)
usage
exit 1
Expand Down
Loading