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

Commit

Permalink
make rhel the new implicit and provide changelog information. Closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
chambridge committed Sep 22, 2017
1 parent e175251 commit 30fbf08
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
21 changes: 19 additions & 2 deletions rho.spec
Expand Up @@ -63,16 +63,33 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/ansible/%{name}/roles/*

%changelog
* Thu Sep 21 2017 Christopher Hambridge <chambrid@redhat.com> 0.0.28-1
- Updated to utilize Ansible 2.3.1.0 and an Ansible playbook and associate
roles.
- Encryption of auth credential entries and network profile entries using a
password and Ansible vault.
- Added additional error checking with associated messages and more user
feedback on success.
- Added ability to create a network profile with a specified ssh port value.
- Added support for scans with sudo user both with and without password.
- Extracted fact information that can be obtaind during a scan into a new
subcommand.
- Provided updated scan options to utilize Ansible. Capturing data in console
and within a log file, additionally tying into the Ansible verbosity levels.
Tune the number of concurrent ssh connections.
- Added the capability to hash values from within a generated report.

* Mon Oct 17 2016 Alex Wood <awood@redhat.com> 0.0.27-1
- Added 4 date commands to help determine when a server was built.
(mvickstr@redhat.com)

* Tue Sep 13 2016 Christopher Snyder <csnyder@redhat.com> 0.0.26-1
- - Added additional columns to the pack-scan report generated by the
- Added additional columns to the pack-scan report generated by the
initconfig command. The current pack-scan format does not include error,
auth.name, and auth.username fields that are helpful when troubleshooting.
The other fields are added to get additional visibility into all fields Rho
can collect. - replaced some key dmidecode commands that used switches not
can collect.
- replaced some key dmidecode commands that used switches not
available on older versions of RHEL with commands that work on all versions
of RHEL. (mvickstr@redhat.com)
- fix srpm_disttag (jesusr@redhat.com)
Expand Down
5 changes: 4 additions & 1 deletion rho/scancommand.py
Expand Up @@ -459,7 +459,10 @@ def _validate_options(self):

# perform fact validation
facts = self.options.facts
if facts == [] or facts == ['default'] or facts == ['all']:
if facts == []:
self.facts_to_collect = list(utilities.RHEL_FACTS +
utilities.CONNECTION_FACTS_TUPLE)
elif facts == ['default'] or facts == ['all']:
self.facts_to_collect = list(utilities.DEFAULT_FACTS)
elif facts == ['jboss']:
self.facts_to_collect = list(utilities.JBOSS_FACTS +
Expand Down

0 comments on commit 30fbf08

Please sign in to comment.