mirror of
https://github.com/geerlingguy/ansible-for-devops.git
synced 2024-05-19 06:50:03 +00:00
13 lines
300 B
YAML
13 lines
300 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
|
|
|
|
# Drupal test.
|
|
- import_playbook: ../drupal/provisioning/playbook.yml
|