41 lines
777 B
YAML
41 lines
777 B
YAML
|
---
|
||
|
# file: roles/base/tasks/redhat.yml
|
||
|
|
||
|
- name: Install Current Updates
|
||
|
yum:
|
||
|
name: '*'
|
||
|
state: latest
|
||
|
when: base_core_install_updates == true
|
||
|
|
||
|
- name: "*** RedHat: EPEL Install ***"
|
||
|
include_tasks:
|
||
|
file: redhat_epel.yml
|
||
|
apply:
|
||
|
tags: epel
|
||
|
tags:
|
||
|
- epel
|
||
|
|
||
|
- name: "*** RedHat: Time Sync Configuration ***"
|
||
|
include_tasks:
|
||
|
file: redhat_time_sync.yml
|
||
|
apply:
|
||
|
tags: time_sync
|
||
|
tags:
|
||
|
- time_sync
|
||
|
|
||
|
- name: "*** RedHat: Automatic Updates Configuration ***"
|
||
|
include_tasks:
|
||
|
file: redhat_automatic_updates.yml
|
||
|
apply:
|
||
|
tags: automatic_updates
|
||
|
tags:
|
||
|
- automatic_updates
|
||
|
|
||
|
- name: "*** RedHat: Firewall Configuration ***"
|
||
|
include_tasks:
|
||
|
file: redhat_firewall.yml
|
||
|
apply:
|
||
|
tags: firewall
|
||
|
tags:
|
||
|
- firewall
|