Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.49 KB

README.md

File metadata and controls

53 lines (38 loc) · 1.49 KB

Role - chrony

Configure a local NTP server to be used by Chrony.

📋 Requirements

🧩 Variables

name type required choices default description
chrony__time.ntp_server string IP / hostname set the ntp source to be used by Chrony

💻 Example Usage

---
# group_vars
chrony__time:
  ntp_server: 192.168.178.3

---
- name: Proxmox Virtual Environment
  hosts: proxmox
  remote_user: "{{ remote_user__admin.user }}"
  tasks:

    - name: Configure Linux system
      tags:
        - linux_system
      block:

      ...

        - name: Configure Chrony
          ansible.builtin.import_role:
            name: chrony
          tags:
            - chrony
...

📜 License

See LICENSE

✍️ Author

David Gries <mail@dgries.de>