mirror of
https://github.com/geerlingguy/ansible-for-devops.git
synced 2024-05-19 06:50:03 +00:00
18 lines
297 B
YAML
18 lines
297 B
YAML
---
|
|
- hosts: all
|
|
|
|
vars:
|
|
pip_install_packages:
|
|
- docker
|
|
|
|
pre_tasks:
|
|
- name: Update the apt cache so we can install ufw.
|
|
apt: update_cache=yes cache_valid_time=600
|
|
|
|
roles:
|
|
- geerlingguy.docker
|
|
- geerlingguy.pip
|
|
|
|
# Docker test.
|
|
- import_playbook: ../docker/main.yml
|