From 149cee1cefe0ca6e0a084a94f6281cc18f20f96b Mon Sep 17 00:00:00 2001 From: Julian Vanden Broeck Date: Fri, 27 May 2022 16:47:40 +0200 Subject: [PATCH 1/2] Use correct version number into examples We replace v0.1.0 (this tag does not exist on github) by 0.1.0 into the collection usage examples. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 68b0e139..2991e7de 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Collection to setup and manage components of the Icinga software stack. You can easily install the collection with the `ansible-galaxy` command. ``` -ansible-galaxy collection install git+https://github.com/Icinga/ansible-collection-icinga.git,v0.1.0 +ansible-galaxy collection install git+https://github.com/Icinga/ansible-collection-icinga.git,0.1.0 ``` Or if you are using Tower or AWX add the collection to your requirements file. @@ -33,7 +33,7 @@ Or if you are using Tower or AWX add the collection to your requirements file. collections: - name: https://github.com/Icinga/ansible-collection-icinga.git type: git - version: v0.1.0 + version: 0.1.0 ``` ## Usage From 8bb1d312a0bb26a8c24e75fb15f358b36188e852 Mon Sep 17 00:00:00 2001 From: Julian Vanden Broeck Date: Fri, 27 May 2022 16:50:12 +0200 Subject: [PATCH 2/2] Adapt example to use fqdn roles names We use the full name into the example --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2991e7de..721853d3 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,7 @@ To use the collection in your playbooks, add the collections and then use the ro ``` - hosts: icinga-server - collections: - - icinga.icinga roles: - - repos - - icinga2 + - icinga.icinga.repos + - icinga.icinga.icinga2 ```