13 lines
263 B
YAML
13 lines
263 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
|
|
- python-pip-whl
|
|
- python3-virtualenv
|
|
|