From d814e4079052c6be28150a77a2385d204ead698d Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Aug 01 2019 22:07:46 +0000 Subject: import insights-client-3.0.5-4.el8 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6597117 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/insights-client-3.0.5.tar.gz diff --git a/.insights-client.metadata b/.insights-client.metadata new file mode 100644 index 0000000..f7b90fa --- /dev/null +++ b/.insights-client.metadata @@ -0,0 +1 @@ +dc6211034ac64a7c8aa3413f8f7806f1c412afe9 SOURCES/insights-client-3.0.5.tar.gz diff --git a/SPECS/insights-client.spec b/SPECS/insights-client.spec new file mode 100644 index 0000000..89fb2c7 --- /dev/null +++ b/SPECS/insights-client.spec @@ -0,0 +1,263 @@ +%define _binaries_in_noarch_packages_terminate_build 0 + +%global insights_user insights +%global insights_group %{insights_user} + +Name: insights-client +Summary: Uploads Insights information to Red Hat on a periodic basis +Version: 3.0.5 +Release: 4%{?dist} +Source0: https://github.com/redhatinsights/insights-client/archive/insights-client-%{version}.tar.gz +Epoch: 0 +License: GPLv2+ +URL: http://access.redhat.com/insights +Group: Applications/System +Vendor: Red Hat, Inc. + +Provides: redhat-access-insights = 1.0.13-3 +Provides: redhat-access-insights = %{version}-%{release}%{?dist} + +Obsoletes: redhat-access-insights <= 1.0.13-2%{?dist} +Obsoletes: redhat-access-proactive <= 0.3.3-0%{?dist} + +# TODO: make specfile dynamic for python 2 or 3 +%{?__python3:Requires: %{__python3}} +Requires: platform-python-setuptools +Requires: python3-requests >= 2.6 +Requires: python3-PyYAML +Requires: python3-pyOpenSSL +Requires: tar +Requires: gpg +Requires: pciutils +Requires: python3-magic +Requires: python3-six +%if 0%{?rhel} && 0%{?rhel} == 6 +Requires: python-argparse +%else +%{?systemd_requires} +Requires: systemd +%endif +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3-setuptools +%if 0%{?rhel} != 6 +BuildRequires: systemd +%endif + +%description +Sends insightful information to Red Hat for automated analysis + +%prep +%setup -q + +%install +rm -rf ${RPM_BUILD_ROOT} +%{__python3} setup.py install --root=${RPM_BUILD_ROOT} $PREFIX +sed -i '1s=^#!/usr/bin/env python\($\|\s\)=#!%{__python3}\1=' \ + %{buildroot}%{python3_sitelib}/insights_client/{__init__.py,major_version.py,run.py} +%pre +getent group insights > /dev/null || /usr/sbin/groupadd -r %{insights_group} +getent passwd insights > /dev/null || \ + /usr/sbin/useradd -g insights -r --shell /sbin/nologin %{insights_user} \ + -c "Red Hat Insights" -d /var/lib/insights + +%post + +%if 0%{?rhel} != 6 +%systemd_post %{name}.timer +%endif + +# Only perform migration from redhat-access-insights to insights-client +if [ $1 -eq 1 ]; then + #Migrate existing machine-id + if [ -f "/etc/redhat_access_proactive/machine-id" ]; then + cp /etc/redhat_access_proactive/machine-id /etc/insights-client/machine-id + fi + #Migrate OTHER existing machine-id + if [ -f "/etc/redhat-access-insights/machine-id" ]; then + cp /etc/redhat-access-insights/machine-id /etc/insights-client/machine-id + fi + #Migrate existing config + if [ -f "/etc/redhat-access-insights/redhat-access-insights.conf" ]; then + cp /etc/redhat-access-insights/redhat-access-insights.conf /etc/insights-client/insights-client.conf + sed -i 's/\[redhat-access-insights\]/\[insights-client\]/' /etc/insights-client/insights-client.conf + fi + #Migrate registration record + if [ -f "/etc/redhat-access-insights/.registered" ]; then + cp /etc/redhat-access-insights/.registered /etc/insights-client/.registered + fi + if [ -f "/etc/redhat-access-insights/.unregistered" ]; then + cp /etc/redhat-access-insights/.unregistered /etc/insights-client/.unregistered + fi + #Migrate last upload record + if [ -f "/etc/redhat-access-insights/.lastupload" ]; then + cp /etc/redhat-access-insights/.lastupload /etc/insights-client/.lastupload + fi + if ! [ -d "/etc/redhat-access-insights" ]; then + mkdir /etc/redhat-access-insights + fi + # Symlink new cron job if the old one exists. Remove the old one + if [ -f "/etc/cron.daily/redhat-access-insights" ]; then + rm -f /etc/cron.daily/redhat-access-insights + %if 0%{?rhel} && 0%{?rhel} == 6 + ln -sf /etc/insights-client/insights-client.cron /etc/cron.daily/insights-client + %else + %_bindir/systemctl start insights-client.timer + %endif + fi +fi + +# if the logging directory isnt created then make it +if ! [ -d "/var/log/insights-client" ]; then +mkdir /var/log/insights-client +fi + +# if the library directory for eggs and such isn't present +# make it +if ! [ -d "/var/lib/insights" ]; then +mkdir /var/lib/insights +fi + +# if ansible is present +# make the fact directory AND +# the fact file AND +if [ -d "/etc/ansible" ]; then +if ! [ -d "/etc/ansible/facts.d" ]; then +mkdir /etc/ansible/facts.d +fi +fi +if [ -d "/etc/ansible/facts.d" ]; then +touch /etc/ansible/facts.d/insights.fact +touch /etc/ansible/facts.d/insights_machine_id.fact +fi + + +# always perform legacy symlinks +%posttrans +mkdir -p /etc/redhat-access-insights +ln -sf /etc/insights-client/insights-client.conf /etc/redhat-access-insights/redhat-access-insights.conf +ln -sf /etc/insights-client/insights-client.cron /etc/redhat-access-insights/redhat-access-insights.cron +ln -sf /etc/insights-client/.registered /etc/redhat-access-insights/.registered +ln -sf /etc/insights-client/.unregistered /etc/redhat-access-insights/.unregistered +ln -sf /etc/insights-client/.lastupload /etc/redhat-access-insights/.lastupload +ln -sf /etc/insights-client/machine-id /etc/redhat-access-insights/machine-id + +%preun +%if 0%{?rhel} != 6 +%systemd_preun %{name}.timer +%systemd_preun %{name}.service +%endif + +%postun +if [ "$1" -eq 0 ]; then +# One run on removal, not upgrade +%if 0%{?rhel} != 6 +%_bindir/systemctl daemon-reload > /dev/null 2>&1 +%endif +rm -f /etc/cron.daily/insights-client +rm -f /etc/cron.weekly/insights-client +rm -f /etc/insights-client/.cache* +rm -f /etc/insights-client/.registered +rm -f /etc/insights-client/.unregistered +rm -f /etc/insights-client/.lastupload +rm -f /etc/insights-client/rpm.egg +rm -f /etc/insights-client/rpm.egg.asc +rm -f /etc/insights-client/.insights-core*.etag +rm -rf /var/lib/insights +rm -f /etc/ansible/facts.d/insights.fact +rm -f /etc/ansible/facts.d/insights_machine_id.fact +# remove symlink to old name on uninstall +rm -f %{_bindir}/redhat-access-insights +# remove symlinks to old configs +rm -rf /etc/redhat-access-insights/ +rm -f /etc/cron.daily/redhat-access-insights +rm -f /etc/cron.weekly/redhat-access-insights +fi + +%clean +test "x$RPM_BUILD_ROOT" != "x" && rm -rf $RPM_BUILD_ROOT + +%files +%defattr(0600, root, root) +%config(noreplace) /etc/insights-client/*.conf +/etc/insights-client/.fallback.json +/etc/insights-client/.fallback.json.asc +/etc/insights-client/.exp.sed + +%if 0%{?rhel} != 6 +%attr(644,root,root) %{_unitdir}/insights-client.service +%attr(644,root,root) %{_unitdir}/insights-client.timer +%endif + +%attr(440,root,root) /etc/insights-client/*.pem +%attr(440,root,root) /etc/insights-client/redhattools.pub.gpg + +%attr(755,root,root) %{_bindir}/insights-client +%attr(755,root,root) %{_bindir}/redhat-access-insights +%attr(755,root,root) %{_bindir}/insights-client-run + +%if 0%{?rhel} && 0%{?rhel} == 6 +%attr(755,root,root) /etc/insights-client/insights-client.cron +%endif + +%attr(644,root,root) /etc/insights-client/rpm.egg +%attr(644,root,root) /etc/insights-client/rpm.egg.asc + +%attr(755,root,root) %dir %{python3_sitelib}/insights_client*.egg-info +%attr(644,root,root) %{python3_sitelib}/insights_client*.egg-info/* +%attr(644,root,root) %{python3_sitelib}/insights_client/*.py* +%attr(644,root,root) %{python3_sitelib}/insights_client/__pycache__/* + +%doc +%defattr(-, root, root) +/usr/share/man/man8/*.8.gz +/usr/share/man/man5/*.5.gz + +%changelog +* Tue Dec 11 2018 Jeremy Crafts - 3.0.5-4 +- Update core egg with bugfixes +- Resolves: BZ1656973 + +* Thu Nov 15 2018 Lumír Balhar - 3.0.5-3 +- Require platform-python-setuptools instead of python3-setuptools +- Resolves: rhbz#1650111 + +* Thu Sep 20 2018 Tomas Orsava - 3.0.5-2 +- Require the Python interpreter directly instead of using the package name +- Related: rhbz#1619153 + +* Wed Aug 8 2018 Jeremy Crafts - 3.0.5-1 +- Python 3 compatibility fixes +- Remove libcgroup dependency +- Resolves: BZ1510990 + +* Tue Aug 7 2018 Jeremy Crafts - 3.0.5-0 +- RHEL 8 build with bugfixes + +* Tue Jun 5 2018 Jeremy Crafts - 3.0.4-0 +- Initial RHEL 8 build + +* Thu Jan 18 2018 Kyle Lape - 3.0.3-1 +- RHEL 7 RPM now uses systemd service and timer instead of cron +- Addition of IO and CPU cgroup constraints +- Fixed memory cgroup constraint + +* Wed Oct 18 2017 Richard Brantley - 3.0.2-2 +- Resolves BZ1498650, BZ1500008, BZ1501545, BZ1501552, BZ1501556, BZ1501561, BZ1501565, BZ1501566 +- Fixes version migration logic +- Fixes symlink issues to old binary +- Fixes short ID analysis for images and containers +- Fixes Docker library detection +- Fixes image and container detection +- Fixes registration execution flow +- Fixes --version flag to print to stdout and include additional versioning information +- Includes Insights Core 3.0.3-1 + +* Wed Oct 4 2017 Richard Brantley - 3.0.1-5 +- Resolves BZ1498581 +- Fixes sys.path issues +- Includes Insights Core 3.0.2-6 + +* Wed Sep 27 2017 Richard Brantley - 3.0.0-4 +- Initial build