From 8bac98943047d78fa18a06a30664ebe5739d2f93 Mon Sep 17 00:00:00 2001 From: Kenny Tordeurs Date: Wed, 10 Jul 2019 14:54:02 +0200 Subject: [PATCH 1/2] changed example to include role name in lowercase --- examples/example-insights-client-playbook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example-insights-client-playbook.yml b/examples/example-insights-client-playbook.yml index c325348..7cf8e30 100644 --- a/examples/example-insights-client-playbook.yml +++ b/examples/example-insights-client-playbook.yml @@ -1,4 +1,4 @@ --- - hosts: all roles: - - { role: RedHatInsights.insights-client } + - { role: redhatinsights.insights-client } From 6a21660efc94dd934f71f087531d549d83a7b563 Mon Sep 17 00:00:00 2001 From: Kenny Tordeurs Date: Wed, 10 Jul 2019 14:56:59 +0200 Subject: [PATCH 2/2] Change from uppercase RedHatInsights.insights-client to lowercase redhatinsights.insights-client --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3016092..fc41336 100644 --- a/README.md +++ b/README.md @@ -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' @@ -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'.