mirror of
https://github.com/xcat2/confluent.git
synced 2026-09-11 12:06:26 +00:00
9e811dd81c
Reading an event log skipped every log service whose id or name said journal, dump, post code, host logger or crash, on every implementation. Those names are bmcweb's: the AMI and Lenovo bmcs call theirs SEL, EventLog, AuditLog and PlatformLog. bmcweb does need the distinction, keeping its event log under the system while a clear would destroy its dumps, so it gets a handler that names the words and generic names none, reading whatever a platform publishes.
47 lines
1.9 KiB
Cheetah
47 lines
1.9 KiB
Cheetah
from setuptools import setup
|
|
|
|
setup(
|
|
name='confluent_server',
|
|
version='#VERSION#',
|
|
author='Lenovo',
|
|
author_email='jjohnson2@lenovo.com',
|
|
url='https://github.com/lenovo/confluent/',
|
|
license='Apache-2.0',
|
|
description='confluent systems management server',
|
|
long_description='confluent systems management server',
|
|
platforms=['Linux'],
|
|
packages=['confluent', 'confluent/config', 'confluent/interface',
|
|
'confluent/discovery/',
|
|
'confluent/discovery/protocols/',
|
|
'confluent/discovery/handlers/',
|
|
'confluent/networking/',
|
|
'confluent/plugins/hardwaremanagement/',
|
|
'confluent/plugins/deployment/',
|
|
'confluent/plugins/console/',
|
|
'confluent/plugins/info/',
|
|
'confluent/plugins/shell/',
|
|
'confluent/collective/',
|
|
'confluent/plugins/configuration/',
|
|
'aiohmi',
|
|
'aiohmi/cmd',
|
|
'aiohmi/ipmi',
|
|
'aiohmi/ipmi/oem',
|
|
'aiohmi/ipmi/oem/lenovo',
|
|
'aiohmi/ipmi/private',
|
|
'aiohmi/redfish',
|
|
'aiohmi/redfish/oem',
|
|
'aiohmi/redfish/oem/dell',
|
|
'aiohmi/redfish/oem/lenovo',
|
|
'aiohmi/redfish/oem/ami',
|
|
'aiohmi/redfish/oem/megware',
|
|
'aiohmi/redfish/oem/openbmc',
|
|
'aiohmi/util'],
|
|
scripts=['bin/confluent', 'bin/confluent_selfcheck', 'bin/confluentdbutil', 'bin/collective', 'bin/osdeploy'],
|
|
data_files=[('/etc/init.d', ['sysvinit/confluent']),
|
|
('/usr/lib/sysctl.d', ['sysctl/confluent.conf']),
|
|
('/opt/confluent/share/licenses/confluent_server', ['LICENSE', 'COPYRIGHT']),
|
|
('/usr/lib/systemd/system', ['systemd/confluent.service']),
|
|
('/opt/confluent/lib/python/confluent/plugins/console/', [])],
|
|
|
|
)
|