aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/secgroup/tasks/main.yml
blob: 6419208bdccd78efd25eeab88e49714b7be72c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
- include_vars: "{{ ansible_os_family }}.yml"
  tags: secgroup

- debug: msg={{ enable_secgroup }}
  tags: secgroup

- include: secgroup.yml
  when: '{{ enable_secgroup }} == False'
  tags: secgroup

- meta: flush_handlers