Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
ad30a8307f
commit
f418990e84
85 changed files with 3520 additions and 2 deletions
41
README.md
41
README.md
|
|
@ -1,3 +1,40 @@
|
|||
# ansible
|
||||
# jriou.general
|
||||
|
||||
My Ansible collection
|
||||
My Ansible collection.
|
||||
|
||||
## Releases
|
||||
|
||||
See [Releases](https://git.riou.xyz/jriou/ansible/releases) for the available
|
||||
versions.
|
||||
|
||||
## Installation
|
||||
|
||||
File `requirements.yml`:
|
||||
|
||||
```yaml
|
||||
collections:
|
||||
- name: https://git.riou.xyz/jriou/ansible.git
|
||||
type: git
|
||||
version: 1.0.0
|
||||
```
|
||||
|
||||
Install with ansible-galaxy:
|
||||
|
||||
```
|
||||
ansible-galaxy collection install -r requirements.yml
|
||||
```
|
||||
|
||||
## Roles
|
||||
|
||||
See the [roles](roles) directory for the complete list of roles and their
|
||||
documentation.
|
||||
|
||||
## Usage
|
||||
|
||||
```yaml
|
||||
- hosts: all
|
||||
roles:
|
||||
- jriou.general.role_name
|
||||
```
|
||||
|
||||
Replace `role_name` with one of the available roles.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue