2019-06-02 00:04:33 +08:00
|
|
|
- block:
|
|
|
|
- name: stop and disable chrony in Ubuntu
|
|
|
|
service: name=chrony state=stopped enabled=no
|
|
|
|
ignore_errors: true
|
|
|
|
when: 'ansible_distribution in ["Ubuntu","Debian"]'
|
|
|
|
|
|
|
|
- name: stop and disable chronyd in CentOS/RedHat
|
|
|
|
service: name=chronyd state=stopped enabled=no
|
|
|
|
ignore_errors: true
|
2020-12-30 11:25:54 +08:00
|
|
|
when: 'ansible_distribution in ["CentOS","RedHat","Amazon","Aliyun"]'
|
2019-06-02 00:04:33 +08:00
|
|
|
when: "groups['chrony']|length > 0"
|