Getting started¶
Example inventory¶
debops.locales
is included by default in the common.yml
DebOps
playbook; you don't need to do anything to have it executed.
Example playbook¶
If you are using this role without DebOps, here's an example Ansible playbook
that uses the debops.locales
role:
---
- name: Configure localization and internationalization
hosts: [ 'debops_all_hosts', 'debops_service_locales' ]
become: True
environment: '{{ inventory__environment | d({})
| combine(inventory__group_environment | d({}))
| combine(inventory__host_environment | d({})) }}'
roles:
- role: debops.locales
tags: [ 'role::locales', 'skip::locales' ]