mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
4d1d016325
The sysvinit scripts were not returning the same informational messages when run under systemctl as they were when run under service.
22 lines
782 B
Cheetah
22 lines
782 B
Cheetah
from setuptools import setup
|
|
import os
|
|
|
|
setup(
|
|
name='confluent_server',
|
|
version='#VERSION#',
|
|
author='Jarrod Johnson',
|
|
author_email='jbjohnso@us.ibm.com',
|
|
url='http://xcat.sf.net/',
|
|
description='confluent systems management server',
|
|
packages=['confluent', 'confluent/config', 'confluent/interface',
|
|
'confluent/plugins/hardwaremanagement/',
|
|
'confluent/plugins/configuration/'],
|
|
install_requires=['pycrypto>=2.6', 'confluent_client>=0.1.0', 'eventlet',
|
|
'pyghmi>=0.6.5'],
|
|
scripts=['bin/confluent'],
|
|
data_files=[('/etc/init.d', ['sysvinit/confluent']),
|
|
('/usr/lib/systemd/system', ['systemd/confluent.service']),
|
|
('/opt/confluent/lib/python/confluent/plugins/console/', [])],
|
|
|
|
)
|