Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use correct version number into examples #94

Merged
merged 2 commits into from
Jul 13, 2022
Merged
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
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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
```