Update galaxy metadata

Change-Id: I25707a7a2fa8600351120813361a37d9fff9d9f0
5 files changed
tree: bfd70d47995b9729177d910fdf19c2ee3858eef7
  1. .cookiecutter_params.json
  2. .reuse/
  3. LICENSES/
  4. Makefile
  5. README.md
  6. VERSION
  7. defaults/
  8. handlers/
  9. meta/
  10. molecule/
  11. tasks/
  12. templates/
  13. vars/
README.md

chrony

Chrony NTP server

Chrony website/documentation

Ubuntu Chrony docs

Requirements

Minimum ansible version: 2.9.5

Configuration

Add the NTP servers you want to use to the ntp_pools list, with a count of servers per pool.

Add a list of CIDR formatted IP ranges to ntp_client_allow, and those systems will be able to request time information from the server.

Example Playbook

- hosts: all
  vars:
    ntp_pools:
      - name: 0.pool.ntp.org
        count: 1
      - name: 1.pool.ntp.org
        count: 1
      - name: 2.pool.ntp.org
        count: 1
      - name: 3.pool.ntp.org
        count: 1
    ntp_client_allow:
      - "10.0.0.1/24"
  roles:
    - chrony

License and Author

© 2021 Open Networking Foundation support@opennetworking.org

License: Apache-2.0