ansible/playbooks/chronyd.yml

31 lines
587 B
YAML
Raw Normal View History

2022-08-25 23:01:00 +02:00
#!/usr/bin/env ansible-playbook
---
- hosts:
- ntp-1.int.infra.auro.re
2023-01-04 08:03:52 +01:00
- ntp-2.int.infra.auro.re
2022-08-25 23:01:00 +02:00
vars:
chronyd__allow_networks:
- 10.128.0.0/16
- 2a09:6840:128::/48
chronyd__pools:
- 0.pool.ntp.org
- 1.pool.ntp.org
- 2.pool.ntp.org
- 3.pool.ntp.org
chronyd__local_stratum: 10
2022-08-25 23:01:00 +02:00
roles:
- chronyd
2022-08-26 00:06:25 +02:00
- hosts:
2023-01-07 02:25:53 +01:00
- pve_network
- vm_network
2022-08-26 00:06:25 +02:00
- "!ntp-1.int.infra.auro.re"
2023-01-04 08:03:52 +01:00
- "!ntp-2.int.infra.auro.re"
2022-08-26 00:06:25 +02:00
vars:
chronyd__pools:
- ntp-1.int.infra.auro.re
2023-01-04 08:03:52 +01:00
- ntp-2.int.infra.auro.re
2022-08-26 00:06:25 +02:00
roles:
- chronyd
2022-08-25 23:01:00 +02:00
...