From 560b650fa83ff3ce274a705c321fb940c7499a75 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Fri, 31 Aug 2012 09:56:50 -0400 Subject: [PATCH] Add cinder- prefix to all binaries. Renames clear_rabbit_queues and volume-usuage-audit binaries so that they are prefixed with 'cinder-'. As part of this change the clear_rabbit_queues binary was changed to use dashes instead of underscores for consistency with the rest of the cinder binaries. Fixes LP Bug #1044386. Change-Id: I7692a543cc67af2d342a64b84626de38c0a64f81 --- bin/{clear_rabbit_queues => cinder-clear-rabbit-queues} | 0 bin/{volume-usage-audit => cinder-volume-usage-audit} | 0 setup.py | 8 ++++---- 3 files changed, 4 insertions(+), 4 deletions(-) rename bin/{clear_rabbit_queues => cinder-clear-rabbit-queues} (100%) rename bin/{volume-usage-audit => cinder-volume-usage-audit} (100%) mode change 100644 => 100755 diff --git a/bin/clear_rabbit_queues b/bin/cinder-clear-rabbit-queues similarity index 100% rename from bin/clear_rabbit_queues rename to bin/cinder-clear-rabbit-queues diff --git a/bin/volume-usage-audit b/bin/cinder-volume-usage-audit old mode 100644 new mode 100755 similarity index 100% rename from bin/volume-usage-audit rename to bin/cinder-volume-usage-audit diff --git a/setup.py b/setup.py index 73e7f2811..350ce25a1 100644 --- a/setup.py +++ b/setup.py @@ -32,12 +32,12 @@ setuptools.setup(name='cinder', include_package_data=True, test_suite='nose.collector', setup_requires=['setuptools-git>=0.4'], - scripts=['bin/clear_rabbit_queues', - 'bin/cinder-all', + scripts=['bin/cinder-all', 'bin/cinder-api', + 'bin/cinder-clear-rabbit-queues', 'bin/cinder-manage', 'bin/cinder-rootwrap', 'bin/cinder-scheduler', - 'bin/volume-usage-audit', - 'bin/cinder-volume'], + 'bin/cinder-volume', + 'bin/cinder-volume-usage-audit'], py_modules=[]) -- 2.45.2