All checks were successful
/ ansible-docsmith (push) Successful in 41s
Signed-off-by: Julien Riou <julien@riou.xyz>
40 lines
615 B
Markdown
40 lines
615 B
Markdown
# jriou.general
|
|
|
|
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.
|