Files
configpolicy/roles/base/tasks/main.yml
Dustin C. Hatch b870daff58 roles/base: Basic config management support
The *base* role performs the basic tasks needed to manage a node using
Ansible. Specifically, it installs the necessary packages for
manipulating SELinux policy.
2018-01-29 15:02:10 -06:00

13 lines
292 B
YAML

- 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