Files

13 lines
304 B
YAML

---
- hosts: all
tasks:
- name: Update the apt cache so we can install ufw.
apt: update_cache=yes cache_valid_time=600
- name: Install ufw so we can disable it in the playbook.
apt: name=ufw state=present
# Includes test.
- import_playbook: ../includes/provisioning/playbook.yml