From bad44bef16020fdbd4205f32e8908e523be26632 Mon Sep 17 00:00:00 2001 From: Chris Hambridge Date: Wed, 29 Nov 2017 14:19:07 -0500 Subject: [PATCH] Bump version to 0.0.31. Closes #492. --- .github/issue_template.md | 2 +- doc/Makefile | 4 ++-- rho.spec | 6 +++++- rho/__init__.py | 2 +- roles/brms/tasks/main.yml | 6 +++--- 5 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/issue_template.md b/.github/issue_template.md index 58c4565..612e54f 100644 --- a/.github/issue_template.md +++ b/.github/issue_template.md @@ -19,7 +19,7 @@ ___ ## Bug Report ### Version of rho: -[ 0.27, 0.28, 0.29, 0.30 ] +[ 0.0.28, 0.0.29, 0.0.30, 0.0.31 ] ### Expected behavior: Describe the expected behavior for the program. diff --git a/doc/Makefile b/doc/Makefile index 6428cd6..2764c9e 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -28,8 +28,8 @@ manpage: pandoc source/man.rst \ --standalone -t man -o rho.1 \ --variable=section:1 \ - --variable=date:'August 29, 2017' \ - --variable=footer:'version 0.0.28' \ + --variable=date:'November 29, 2017' \ + --variable=footer:'version 0.0.31' \ --variable=header:'rho User Commands' man-html: diff --git a/rho.spec b/rho.spec index 2fed8c1..501a03a 100644 --- a/rho.spec +++ b/rho.spec @@ -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.30 +Version: 0.0.31 Release: 1%{?dist} Summary: An SSH system profiler @@ -63,6 +63,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/ansible/%{name}/roles/* %changelog +* Wed Nov 29 2017 Noah Lavine 0.0.31-1 +- Enhancements to capture presence of JBoss Fuse from init subscriptions +- Enhancements to find common JBoss Fuse files using locate command +- Enhancements to find common JBoss BRMS files using locate command * Wed Nov 8 2017 Noah Lavine 0.0.30-1 - Enhancements to capture presence of EAP from init subscriptions - Enhancements to find common EAP files using locate command diff --git a/rho/__init__.py b/rho/__init__.py index 039f116..c52f9a5 100644 --- a/rho/__init__.py +++ b/rho/__init__.py @@ -1,2 +1,2 @@ # pylint: disable=missing-docstring -__version__ = '0.0.30' +__version__ = '0.0.31' diff --git a/roles/brms/tasks/main.yml b/roles/brms/tasks/main.yml index f6878b4..bd080f6 100644 --- a/roles/brms/tasks/main.yml +++ b/roles/brms/tasks/main.yml @@ -7,13 +7,13 @@ raw: locate --basename business-central | egrep '.*/business-central(.war)?/?$' register: jboss_brms_business_central_candidates ignore_errors: yes - when: '"jboss.brms" in facts_to_collect' + when: 'have_locate and "jboss.brms" in facts_to_collect' - name: find kie-server candidates raw: locate --basename 'kie-server*' | egrep --invert-match '(.*.xml)|(.*.jar)' register: jboss_brms_kie_server_candidates ignore_errors: yes - when: '"jboss.brms" in facts_to_collect' + when: 'have_locate and "jboss.brms" in facts_to_collect' # Combine the above with any EAP_HOME directories we've found @@ -43,7 +43,7 @@ raw: locate --basename 'kie-api*' register: jboss_brms_locate_kie_api ignore_errors: yes - when: '"jboss.brms" in facts_to_collect' + when: 'have_locate and "jboss.brms" in facts_to_collect' # Tasks that do filesystem scans. This will scan linux systems for # JBoss BRMS or Drools Installations