19 lines
294 B
YAML
19 lines
294 B
YAML
---
|
|
#- import_playbook: httpd.yml
|
|
|
|
- name: Install http php and mariadb
|
|
hosts: eoq
|
|
become: yes
|
|
gather_facts: yes
|
|
vars_files:
|
|
- group_vars/db/vault.yml # This is encrypted
|
|
|
|
roles:
|
|
- httpd_with_php
|
|
#- mariadb
|
|
|
|
tasks:
|
|
- debug:
|
|
msg: "Finished configuring DNS"
|
|
|