14 lines
253 B
YAML
14 lines
253 B
YAML
|
---
|
||
|
|
||
|
- name: SET_FACT | Prepare test vars
|
||
|
set_fact:
|
||
|
__nginx_conf: /usr/local/etc/nginx/nginx.conf
|
||
|
php_xdebug_package: 'php72-pecl-xdebug26'
|
||
|
|
||
|
- name: PKGNG | Install packages
|
||
|
pkgng:
|
||
|
name: "{{ item }}"
|
||
|
with_items:
|
||
|
- curl
|
||
|
- nginx
|