Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/robertdebock/ansible-collection-roles

A collection of roles found on robertdebock.nl.
https://github.com/robertdebock/ansible-collection-roles

ansible collection configuration-management linux roles

Last synced: about 2 months ago
JSON representation

A collection of roles found on robertdebock.nl.

Awesome Lists containing this project

README

        

# Ansible Collection - robertdebock.roles

A collection of roles found on [robertdebock.nl](https://robertdebock.nl/).

## Using roles in this collection.

1. Install the collection:

```shell
ansible-galaxy collection install robertdebock.roles
```

You can also list a collection in `requirements.yml`:

```yaml
---
collections:
- name: robertdebock.roles
```

2. Include roles in your playbooks:

```yaml
---
- name: make a great machine
hosts: all
tasks:
- name: bootstrap
import_role:
name: robertdebock.roles.bootstrap
```