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

Commit

Permalink
Update in response to review
Browse files Browse the repository at this point in the history
Thanks to chambrid for the review
  • Loading branch information
Noah Lavine committed Nov 10, 2017
1 parent 60acfaf commit 8437719
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions doc/facts.rst
Expand Up @@ -29,6 +29,8 @@
- ``jboss.brms.kie-war-ver`` - KIE runtime version
- ``jboss.eap.common-files`` - Presence of common files and directories for JBoss EAP
- ``jboss.eap.deploy-dates`` - List of deployment dates of JBoss EAP installations
- ``jboss.eap.eap-home`` - Find EAP_HOME directories of JBoss EAP installations
- ``jboss.eap.init-files`` - Find system services that look JBoss-related
- ``jboss.eap.installed-versions`` - List of installed versions of JBoss EAP
- ``jboss.eap.locate-jboss-modules-jar`` - Use locate to find jboss-modules.jar
- ``jboss.eap.jboss-user`` - Whether a user called 'jboss' exists
Expand All @@ -38,6 +40,7 @@
- ``jboss.fuse.activemq-ver`` - ActiveMQ version
- ``jboss.fuse.camel-ver`` - Camel version
- ``jboss.fuse.cxf-ver`` - CXF version
- ``jboss.fuse.fuse-on-eap`` - Fuse on EAP
- ``redhat-packages.certs`` - the list of Red Hat certificates found
- ``redhat-packages.gpg.is_redhat`` - determines if package is a Red Hat package filtered by GPG keys
- ``redhat-packages.gpg.last_installed`` - last installed package filtered by GPG keys
Expand Down
3 changes: 2 additions & 1 deletion rho/facts.py
Expand Up @@ -188,7 +188,8 @@ def new_fact(fact_name, description, is_default=None,
new_fact('jboss.fuse.activemq-ver', 'ActiveMQ version', is_default=False)
new_fact('jboss.fuse.camel-ver', 'Camel version', is_default=False)
new_fact('jboss.fuse.cxf-ver', 'CXF version', is_default=False)
new_fact('jboss.fuse.fuse-on-eap', 'Fuse on EAP', is_default=True)
new_fact('jboss.fuse.fuse-on-eap', 'Fuse on EAP',
is_default=True, categories=[JBOSS_FACTS])
new_fact('redhat-packages.certs', 'the list of Red Hat certificates found',
is_default=True, categories=[RHEL_FACTS])
new_fact('redhat-packages.gpg.is_redhat',
Expand Down

0 comments on commit 8437719

Please sign in to comment.