Getting started
Example inventory
The debops.sysctl
role is included by default in the DebOps common
playbook and you don't need to add hosts to a custom inventory group to
activate the role.
Example playbook
If you are using this role without DebOps, here's an example Ansible playbook
that uses the debops.sysctl
role:
---
- name: Manage kernel parameters using sysctl
collections: [ 'debops.debops', 'debops.roles01',
'debops.roles02', 'debops.roles03' ]
hosts: [ 'debops_all_hosts', 'debops_service_sysctl' ]
become: True
environment: '{{ inventory__environment | d({})
| combine(inventory__group_environment | d({}))
| combine(inventory__host_environment | d({})) }}'
roles:
- role: sysctl
tags: [ 'role::sysctl', 'skip::sysctl' ]