summaryrefslogtreecommitdiffstats
path: root/ansible/node/roles/common/tasks/main.yml
blob: 104d9f55c14c63871fbcfe3a60a76f94fb8a8502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
- include_tasks: "{{ ansible_os_family | lower }}/{{ task }}.yml"
  with_list:
  - packages
  - firewall
  - ntp
  loop_control:
    loop_var: task

- meta: flush_handlers

- include_tasks: generic/{{ task }}.yml
  with_list:
  - selinux
  - autocluster
  - hosts
  - resolv_conf
  - ssh
  - timezone
  - rsyslog
  - mount_home
  loop_control:
    loop_var: task

- meta: flush_handlers