Files
startusingansible/examples/003_with_items/webserver.yml

11 lines
262 B
YAML

---
- hosts: webserver
become: true
tasks:
- name: install web components
apt: name={{item}} state=present update_cache=yes
with_items:
- apache2
- libapache2-mod-wsgi-py3
- python3-pip-whl
- python3-virtualenv