Compare commits

..

No commits in common. "89334758ea7597c1513cb931aff03d5fb1dd0f40" and "720cabf05bfc2a483cd21ea143702f76fcfba4cb" have entirely different histories.

2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +0,0 @@
---
docroot: /var/www/html
domainname: "{{ inventory_hostname }}"

View File

@ -9,6 +9,16 @@
include_role:
name: acmesh
- name: set DocumentRoot
set_fact:
docroot: "/var/www/html"
when: docroot is not defined
- name: set domainname
set_fact:
domainname: "{{ inventory_hostname }}"
when: domainname is not defined
- name: create wwwroot
file:
path: "{{ docroot }}"