19 lines
236 B
YAML
19 lines
236 B
YAML
---
|
|
|
|
- hosts: localhost
|
|
connection: local
|
|
become: true
|
|
|
|
pre_tasks:
|
|
- name: install commons
|
|
apt:
|
|
name:
|
|
- python3-pip
|
|
update_cache: yes
|
|
|
|
roles:
|
|
- nginx
|
|
- wwwuser
|
|
- php
|
|
- mariadb
|