From 300f985dabc76969f210db71fb3624bc9388a6b7 Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Fri, 10 Feb 2023 20:39:21 -0500 Subject: add chrony documentation --- roles/chrony/README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 roles/chrony/README.md diff --git a/roles/chrony/README.md b/roles/chrony/README.md new file mode 100644 index 0000000..082688f --- /dev/null +++ b/roles/chrony/README.md @@ -0,0 +1,35 @@ +Chrony +====== + +Description +----------- + +The `chrony` role configures the [chrony](https://chrony.tuxfamily.org/) NTP +daemon. + +Variables +--------- + +This role **accepts** the following variables: + +Variable | Default | Description +---------------------|--------------------------|------------ +`chrony_ntp_servers` | `{{ vlan.ntp_servers }}` | List of upstream NTP servers + +Usage +----- + +Example playbook: + +````yaml +- name: configure NTP + hosts: all + roles: + - role: chrony + vars: + chrony_ntp_servers: + - 0.north-america.pool.ntp.org + - 1.north-america.pool.ntp.org + - 2.north-america.pool.ntp.org + - 3.north-america.pool.ntp.org +```` -- cgit