Skip to content
This repository was archived by the owner on Jul 13, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ Example Playbook

- hosts: all
roles:
- { role: RedHatInsights.insights-client, when: ansible_os_family == 'RedHat' }
- { role: redhatinsights.insights-client, when: ansible_os_family == 'RedHat' }

If a system's hostname is not easily identifiable, but inventory_hostname is easily identifiable,
as often happens on some cloud platforms, set insights_display_name set to be inventory_hostname:

- hosts: all
roles:
- role: RedHatInsights.insights-client
- role: redhatinsights.insights-client
insights_display_name: "{{ inventory_hostname }}"
when: ansible_os_family == 'RedHat'

Expand Down Expand Up @@ -119,7 +119,7 @@ Example Use
1. On a system where [Ansible is installed](http://docs.ansible.com/ansible/intro_installation.html), run the following command:

```bash
$ ansible-galaxy install RedHatInsights.insights-client
$ ansible-galaxy install redhatinsights.insights-client
```

1. Copy the Example Playbook to a file named 'install-insights.yml'.
Expand Down
2 changes: 1 addition & 1 deletion examples/example-insights-client-playbook.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
- hosts: all
roles:
- { role: RedHatInsights.insights-client }
- { role: redhatinsights.insights-client }