@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
17 lines (14 loc) • 469 B
YAML
- name: Import EPEL GPG key
rpm_key:
key: https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8
state: present
when: ansible_distribution != 'Fedora'
- name: Enable EPEL
dnf:
name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
state: present
update_cache: "{{ omit if skip_package_cache_update is defined else 'true' }}"
when: ansible_distribution != 'Fedora'
- name: Run UFW tasks
include_tasks: ufw.yml