Files
ansible-lxc-templates/playbooks/debops/tzdata.yml
2025-11-28 12:03:50 +03:00

20 lines
500 B
YAML

---
- name: Manage time zone configuration
collections: [ 'debops.debops', 'debops.roles01',
'debops.roles02', 'debops.roles03' ]
hosts: [ 'debian10' ]
become: True
environment: '{{ inventory__environment | d({})
| combine(inventory__group_environment | d({}))
| combine(inventory__host_environment | d({})) }}'
vars_files:
- ./../../vars/tzdata.yml
roles:
- role: tzdata
tags: [ 'role::tzdata', 'skip::tzdata' ]