1
0
Fork 0
ansible-collection-kit/README.md

22 lines
378 B
Markdown
Raw Normal View History

2020-09-10 22:37:52 +02:00
# Ansible Collection - eriol.kit
Ansible roles that I wrote for my own use.
2020-09-11 02:32:01 +02:00
## Installation
Create a `requirements.yml` with the following content:
```yaml
---
collections:
2021-01-10 08:06:09 +01:00
- name: https://noa.mornie.org/eriol/ansible-collection-kit
2020-09-11 02:32:01 +02:00
type: git
2021-06-09 00:23:57 +02:00
version: 0.5.2
2020-09-11 02:32:01 +02:00
```
and then, using ansible >= 2.10, run:
```
ansible-galaxy collection install -r requirements.yml
```