diff --git a/timezone.yml b/timezone.yml new file mode 100644 index 0000000..7079f41 --- /dev/null +++ b/timezone.yml @@ -0,0 +1,10 @@ +--- +- name: Configure system timezone + hosts: all + become: yes + vars: + tz: Europe/Rome + tasks: + - name: Set timezone + timezone: + name: "{{ tz }}" \ No newline at end of file