12 lines
186 B
YAML
12 lines
186 B
YAML
|
---
|
||
|
|
||
|
- hosts: "{{ ip_addr }}"
|
||
|
become: yes
|
||
|
become_method: sudo
|
||
|
gather_facts: yes
|
||
|
|
||
|
tasks:
|
||
|
|
||
|
- name: "[CONFIG TZDATA] Set timezone"
|
||
|
import_role:
|
||
|
name: config-tzdata
|