]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Add cinder- prefix to all binaries.
authorDan Prince <dprince@redhat.com>
Fri, 31 Aug 2012 13:56:50 +0000 (09:56 -0400)
committerDan Prince <dprince@redhat.com>
Fri, 31 Aug 2012 13:56:50 +0000 (09:56 -0400)
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/cinder-clear-rabbit-queues [moved from bin/clear_rabbit_queues with 100% similarity]
bin/cinder-volume-usage-audit [moved from bin/volume-usage-audit with 100% similarity, mode: 0755]
setup.py

old mode 100644 (file)
new mode 100755 (executable)
similarity index 100%
rename from bin/volume-usage-audit
rename to bin/cinder-volume-usage-audit
index 73e7f281191917b7caf724777847a2f8deb923c7..350ce25a196c534f8629a4f948015f9e79f75ba9 100644 (file)
--- 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=[])