From da3f530c38d07863183f5ea9df6fcde26d990219 Mon Sep 17 00:00:00 2001 From: Anton Beloglazov Date: Thu, 4 Oct 2012 18:39:37 +1000 Subject: [PATCH] Fixed the rpm packaging to install initscripts and /usr/bin/* --- MANIFEST.in | 1 + TODO | 3 ++- setup.py | 7 +++++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 1a9f293..0f84405 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,3 +2,4 @@ include README.rst include LICENSE include NOTICE include distribute_setup.py +include init.d/* \ No newline at end of file diff --git a/TODO b/TODO index e674681..e7bf6a6 100644 --- a/TODO +++ b/TODO @@ -11,4 +11,5 @@ https://fedoraproject.org/wiki/How_to_create_an_RPM_package https://fedoraproject.org/wiki/Packaging:Guidelines https://fedoraproject.org/wiki/Packaging:Python http://fedoraproject.org/wiki/Packaging:SysVInitScript -http://docs.python.org/distutils/builtdist.html \ No newline at end of file +http://docs.python.org/distutils/builtdist.html +http://stackoverflow.com/questions/2324933/creating-python-rpm diff --git a/setup.py b/setup.py index 37168e1..ed31fe5 100644 --- a/setup.py +++ b/setup.py @@ -87,8 +87,11 @@ setup( entry_points = { 'console_scripts': [ 'neat-data-collector = neat.locals.collector:start', + 'neat-local-manager = neat.locals.manager:start', 'neat-global-manager = neat.globals.manager:start', - 'neat-local-manager = neat.locals.manager:start', ] - } + }, + data_files = [('/etc/init.d', ['init.d/openstack-neat-data-collector', + 'init.d/openstack-neat-local-manager', + 'init.d/openstack-neat-global-manager'])], )