2014-07-14 18:54:12 +00:00
|
|
|
%define name confluent_server
|
|
|
|
%define version #VERSION#
|
|
|
|
%define release 1
|
|
|
|
|
|
|
|
Summary: confluent systems management server
|
|
|
|
Name: %{name}
|
|
|
|
Version: %{version}
|
|
|
|
Release: %{release}
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
License: Apache2
|
|
|
|
Group: Development/Libraries
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
|
|
Prefix: %{_prefix}
|
|
|
|
BuildArch: noarch
|
2019-09-25 19:38:36 +00:00
|
|
|
%if "%{dist}" == ".el8"
|
|
|
|
Requires: python2-pyghmi >= 1.0.34, python2-eventlet, python2-greenlet, python2-pycryptodomex >= 3.4.7, confluent_client, python2-pyparsing, python2-paramiko, python2-dns, python2-netifaces, python2-pyasn1 >= 0.2.3, python2-pysnmp >= 4.3.4, python2-pyte, python2-lxml, python2-eficompressor, python2-setuptools, python2-dateutil
|
|
|
|
%else
|
2019-06-28 19:41:17 +00:00
|
|
|
Requires: python-pyghmi >= 1.0.34, python-eventlet, python-greenlet, python-pycryptodomex >= 3.4.7, confluent_client, python-pyparsing, python-paramiko, python-dns, python-netifaces, python2-pyasn1 >= 0.2.3, python-pysnmp >= 4.3.4, python-pyte, python-lxml, python-eficompressor, python-setuptools, python-dateutil
|
2019-09-25 19:38:36 +00:00
|
|
|
%endif
|
2015-03-25 17:52:59 +00:00
|
|
|
Vendor: Jarrod Johnson <jjohnson2@lenovo.com>
|
2014-07-14 18:54:12 +00:00
|
|
|
Url: http://xcat.sf.net/
|
|
|
|
|
|
|
|
%description
|
|
|
|
Server for console management and systems management aggregation
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -n %{name}-%{version} -n %{name}-%{version}
|
|
|
|
|
|
|
|
%build
|
2019-09-23 15:11:16 +00:00
|
|
|
python2 setup.py build
|
2014-07-14 18:54:12 +00:00
|
|
|
|
|
|
|
%install
|
2019-09-23 15:11:16 +00:00
|
|
|
python2 setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES.bare --install-purelib=/opt/confluent/lib/python --install-scripts=/opt/confluent/bin
|
2014-11-04 14:16:01 +00:00
|
|
|
for file in $(grep confluent/__init__.py INSTALLED_FILES.bare); do
|
|
|
|
rm $RPM_BUILD_ROOT/$file
|
|
|
|
done
|
|
|
|
grep -v confluent/__init__.py INSTALLED_FILES.bare > INSTALLED_FILES
|
|
|
|
cat INSTALLED_FILES
|
2014-07-14 18:54:12 +00:00
|
|
|
|
2017-08-07 13:51:04 +00:00
|
|
|
%triggerin -- python-pyghmi
|
|
|
|
if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl try-restart confluent >& /dev/null; fi
|
|
|
|
true
|
|
|
|
|
2017-01-20 20:50:12 +00:00
|
|
|
%post
|
2017-08-11 20:37:09 +00:00
|
|
|
sysctl -p /usr/lib/sysctl.d/confluent.conf >& /dev/null
|
2017-06-20 18:56:24 +00:00
|
|
|
if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl try-restart confluent >& /dev/null; fi
|
2018-11-14 20:11:05 +00:00
|
|
|
if [ ! -e /etc/pam.d/confluent ]; then
|
|
|
|
ln -s /etc/pam.d/sshd /etc/pam.d/confluent
|
|
|
|
fi
|
2017-06-20 18:56:24 +00:00
|
|
|
true
|
2017-01-20 20:50:12 +00:00
|
|
|
|
2014-07-14 18:54:12 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files -f INSTALLED_FILES
|
|
|
|
%defattr(-,root,root)
|