os/bluestore: rename ceph-bluefs-tool -> ceph-bluestore-tool

This will do bluestore-y things, not *just* bluefs things.

Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
Sage Weil 2017-03-30 15:18:31 -04:00
parent 1c8731c31e
commit 973c01d715
4 changed files with 6 additions and 6 deletions

View File

@ -1359,7 +1359,7 @@ fi
%files osd
%{_bindir}/ceph-clsinfo
%{_bindir}/ceph-bluefs-tool
%{_bindir}/ceph-bluestore-tool
%{_bindir}/ceph-objectstore-tool
%{_bindir}/ceph-osd
%{_sbindir}/ceph-disk

View File

@ -4,7 +4,7 @@ usr/sbin/ceph-disk
usr/sbin/ceph-disk-udev
usr/bin/ceph-clsinfo
usr/bin/ceph-objectstore-tool
usr/bin/ceph-bluefs-tool
usr/bin/ceph-bluestore-tool
usr/bin/ceph_objectstore_bench
usr/bin/ceph-osd
usr/lib/ceph/ceph-osd-prestart.sh

View File

@ -85,11 +85,11 @@ target_link_libraries(os kv)
add_dependencies(os compressor_plugins)
if(HAVE_LIBAIO)
add_executable(ceph-bluefs-tool
bluestore/bluefs_tool.cc)
target_link_libraries(ceph-bluefs-tool
add_executable(ceph-bluestore-tool
bluestore/bluestore_tool.cc)
target_link_libraries(ceph-bluestore-tool
os global)
install(TARGETS ceph-bluefs-tool
install(TARGETS ceph-bluestore-tool
DESTINATION bin)
endif()