Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/robertdebock/ansible-collection-roles
- Owner: robertdebock
- License: apache-2.0
- Created: 2021-02-22T14:29:40.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-26T13:05:53.000Z (8 months ago)
- Last Synced: 2024-05-02T02:19:49.865Z (8 months ago)
- Topics: ansible, collection, configuration-management, linux, roles
- Language: Jinja
- Homepage:
- Size: 11.5 MB
- Stars: 32
- Watchers: 4
- Forks: 14
- Open Issues: 0
-
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
```