mirror of https://github.com/ceph/ceph-ansible.git
21 lines
530 B
YAML
21 lines
530 B
YAML
---
|
|
- name: include_tasks configure_firewall.yml
|
|
include_tasks: configure_firewall.yml
|
|
when:
|
|
- configure_firewall
|
|
- ansible_os_family in ['RedHat', 'Suse']
|
|
tags: configure_firewall
|
|
|
|
- name: include_tasks "ntp_debian.yml"
|
|
include_tasks: "ntp_debian.yml"
|
|
when:
|
|
- ansible_os_family == 'Debian'
|
|
- ntp_service_enabled
|
|
tags: configure_ntp
|
|
|
|
- name: include_tasks "ntp_rpm.yml"
|
|
include_tasks: "ntp_rpm.yml"
|
|
when:
|
|
- ansible_os_family in ['RedHat', 'Suse']
|
|
- ntp_service_enabled
|
|
tags: configure_ntp |