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: 23 days ago
JSON representation
A collection of roles found on robertdebock.nl.
- Host: GitHub
- URL: https://github.com/robertdebock/ansible-collection-roles
- Owner: robertdebock
- License: apache-2.0
- Created: 2021-02-22T14:29:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-13T09:18:01.000Z (7 months ago)
- Last Synced: 2025-06-22T00:52:57.646Z (24 days ago)
- Topics: ansible, collection, configuration-management, linux, roles
- Language: Jinja
- Homepage:
- Size: 11.7 MB
- Stars: 41
- Watchers: 4
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```