aboutsummaryrefslogtreecommitdiffstats
path: root/roles/timezone/README.md
blob: d04b473f70d51979ca6a8bc5eccbd2db738e519d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Timezone
========

Description
-----------

The `timezone` role sets the system timezone, and ensures the system clock
uses UTC.

Variables
---------

This role **accepts** the following variables:

Variable   | Default   | Description
-----------|-----------|------------
`timezone` | `Etc/UTC` | System timezone


Usage
-----

Example playbook:

````yaml
- name: set timezone
  hosts: all
  roles:
    - role: timezone
      vars:
        timezone: America/New_York
````