Fixed the rpm packaging to install initscripts and /usr/bin/*

This commit is contained in:
Anton Beloglazov 2012-10-04 18:39:37 +10:00
parent 1643031b6e
commit da3f530c38
3 changed files with 8 additions and 3 deletions

View File

@ -2,3 +2,4 @@ include README.rst
include LICENSE
include NOTICE
include distribute_setup.py
include init.d/*

3
TODO
View File

@ -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
http://docs.python.org/distutils/builtdist.html
http://stackoverflow.com/questions/2324933/creating-python-rpm

View File

@ -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'])],
)