|
- name: load distribution-specific values
|
|
include_vars: '{{ item }}'
|
|
with_first_found:
|
|
- '{{ ansible_distribution }}.yml'
|
|
- defaults.yml
|
|
tags:
|
|
- always
|
|
|
|
- name: ensure selinux python bindings are installed
|
|
package:
|
|
name={{ selinux_python_libs|join(',') }}
|
|
state=present
|