From dec6ef1d0545c78add879dd4fb708a91be1fe93a Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 26 Jul 2011 14:17:08 -0700 Subject: [PATCH] bash_completion: no more injectargs command Use 'ceph [osd|mds|mon] tell injectargs "foo bar"'. Signed-off-by: Sage Weil --- src/Makefile.am | 2 +- src/bash_completion/ceph | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index d9a3be2e9e515..a14c00bba57fb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -867,7 +867,7 @@ noinst_HEADERS = \ bash_completion/ceph\ bash_completion/rados\ bash_completion/rbd\ - bash_completion/radosgw_admin + bash_completion/radosgw_admin\ client/Client.h\ client/SyntheticClient.h\ client/Trace.h\ diff --git a/src/bash_completion/ceph b/src/bash_completion/ceph index f7ec55b0948ee..cec2b852e5b94 100644 --- a/src/bash_completion/ceph +++ b/src/bash_completion/ceph @@ -40,15 +40,15 @@ _ceph() return 0 ;; osd) - COMPREPLY=( $(compgen -W "tell stat injectargs pool dump getmaxosd tree getmap getcrushmap lspools" -- ${cur}) ) + COMPREPLY=( $(compgen -W "tell stat pool dump getmaxosd tree getmap getcrushmap lspools" -- ${cur}) ) return 0 ;; mon) - COMPREPLY=( $(compgen -W "tell stat injectargs getmap" -- ${cur}) ) + COMPREPLY=( $(compgen -W "tell stat getmap" -- ${cur}) ) return 0 ;; mds) - COMPREPLY=( $(compgen -W "tell stat injectargs stat getmap dump compat" -- ${cur}) ) + COMPREPLY=( $(compgen -W "tell stat stat getmap dump compat" -- ${cur}) ) return 0 ;; *) -- 2.39.5