Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
Merge 99ad0d5 into 21b2b1e
Browse files Browse the repository at this point in the history
  • Loading branch information
chambridge committed May 28, 2018
2 parents 21b2b1e + 99ad0d5 commit a794475
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/issue_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ___
## Bug Report

### Version of rho:
[ 0.0.28, 0.0.29, 0.0.30, 0.0.31, 0.0.32, 0.0.33 ]
[ 0.0.28, 0.0.29, 0.0.30, 0.0.31, 0.0.32, 0.0.33, 0.0.34 ]

### Expected behavior:
Describe the expected behavior for the program.
Expand Down
4 changes: 2 additions & 2 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ manpage:
pandoc source/man.rst \
--standalone -t man -o rho.1 \
--variable=section:1 \
--variable=date:'March 21, 2018' \
--variable=footer:'version 0.0.33' \
--variable=date:'May 28, 2018' \
--variable=footer:'version 0.0.34' \
--variable=header:'rho User Commands'

man-html:
Expand Down
41 changes: 27 additions & 14 deletions rho.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}

Name: rho
Version: 0.0.33
Version: 0.0.34
Release: 1%{?dist}
Summary: An SSH system profiler

Expand All @@ -10,23 +10,27 @@ License: GPLv2
URL: http://github.com/quipucords/rho
Source0: http://github.com/quipucords/rho/archive/master.tar.gz

%if 0%{?rhel}
%global py2_prefix python
%else
%global py2_prefix python2
%endif

BuildArch: noarch
BuildRequires: python-devel
%{?fedora:BuildRequires: python2-setuptools}
%{?rhel:BuildRequires: python-setuptools}
BuildRequires: %{py2_prefix}-devel
BuildRequires: %{py2_prefix}-setuptools
BuildRequires: pandoc
Requires: python-netaddr
%{?fedora:BuildRequires: python2-crypto}
%{?rhel:BuildRequires: python-crypto}
Requires: %{py2_prefix}-netaddr
BuildRequires: %{py2_prefix}-crypto
Requires: ansible
Requires: pexpect
Requires: python-six
Requires: python-enum34
Requires: PyYAML
Requires: %{py2_prefix}-pexpect
Requires: %{py2_prefix}-six
Requires: %{py2_prefix}-enum34
Requires: %{py2_prefix}-pyyaml
%{?rhel:Requires: epel-release}
Requires: python2-future
Requires: python2-sh
Requires: pyxdg
Requires: %{py2_prefix}-future
Requires: %{py2_prefix}-sh
Requires: %{py2_prefix}-pyxdg

%description
Rho is a tool for scanning your network, logging into systems via SSH, and
Expand Down Expand Up @@ -59,6 +63,15 @@ cp -rp roles %{buildroot}%{_datadir}/ansible/%{name}/
%{_datadir}/ansible/%{name}/roles/*

%changelog
* Mon May 28 2018 Christopher Hambridge <chambrid@redhat.com> 0.0.34-1
- Update Python 2 dependency for EPEL support
- Bug fix for unicode processing (mdvickst@redhat.com)
- Bug fix for rpm output to /dev/null (mdvickst@redhat.com)

* Thu Apr 19 2018 Iryna Shcherbina <shcherbina.iryna@gmail.com> - 0.0.33-2
- Update Python 2 dependency declarations to new packaging standards
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)

* Wed Mar 21 2018 Noah Lavine <nlavine@redhat.com> 0.0.33-1
- Bug fix to Ansible task bash globbing (nlavine@redhat.com)
- Bug fix for unicode truncation (chambrid@redhat.com)
Expand Down
2 changes: 1 addition & 1 deletion rho/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# pylint: disable=missing-docstring
__version__ = '0.0.33'
__version__ = '0.0.34'
2 changes: 1 addition & 1 deletion roles/jboss_eap/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
ignore_errors: yes
when: '"jboss.eap.processes" in facts_to_collect'
- name: check for jboss packages
raw: rpm -qa --qf "%{NAME}|%{VERSION}|%{RELEASE}|%{INSTALLTIME}|%{VENDOR}|%{BUILDTIME}|%{BUILDHOST}|%{SOURCERPM}|%{LICENSE}|%{PACKAGER}|%{INSTALLTIME:date}|%{BUILDTIME:date}\n" | grep -E '(eap7)|(jbossas)' | sort
raw: rpm -qa --qf "%{NAME}|%{VERSION}|%{RELEASE}|%{INSTALLTIME}|%{VENDOR}|%{BUILDTIME}|%{BUILDHOST}|%{SOURCERPM}|%{LICENSE}|%{PACKAGER}|%{INSTALLTIME:date}|%{BUILDTIME:date}\n" 2> /dev/null | grep -E '(eap7)|(jbossas)' | sort
register: jboss.eap.packages
ignore_errors: yes
when: '"jboss.eap.packages" in facts_to_collect'
Expand Down

0 comments on commit a794475

Please sign in to comment.