From 1fc8b2b9f910a84918d3a5b70b522d295601f974 Mon Sep 17 00:00:00 2001 From: Patrick Marchand Date: Mon, 6 May 2019 23:41:36 +0200 Subject: [PATCH] Fixed errors in filenames --- webapps/evoadmin-web/README.md | 8 ++++---- webapps/evoadmin-web/tasks/config.yml | 2 +- webapps/evoadmin-web/tasks/web.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/webapps/evoadmin-web/README.md b/webapps/evoadmin-web/README.md index 918e8004..bf5fd03e 100644 --- a/webapps/evoadmin-web/README.md +++ b/webapps/evoadmin-web/README.md @@ -17,12 +17,12 @@ And force it to update: - "templates/evoadmin-web/evoadmin.{{ host_group }}.conf.j2" - "templates/evoadmin-web/evoadmin.conf.j2" And force it to update: - evoadmin_web_conf_force: True + evoadmin_force_vhost: True # Set custom config.local.php -- "templates/evoadmin-web/config.local.{{ inventory_hostname }}.conf.j2" -- "templates/evoadmin-web/config.local.{{ host_group }}.conf.j2" -- "templates/evoadmin-web/config.local.conf.j2" +- "templates/evoadmin-web/config.local.{{ inventory_hostname }}.php.j2" +- "templates/evoadmin-web/config.local.{{ host_group }}.php.j2" +- "templates/evoadmin-web/config.local.php.j2" And force it to update: evoadmin_web_config_local_php_force: True diff --git a/webapps/evoadmin-web/tasks/config.yml b/webapps/evoadmin-web/tasks/config.yml index b36f8178..68423193 100644 --- a/webapps/evoadmin-web/tasks/config.yml +++ b/webapps/evoadmin-web/tasks/config.yml @@ -27,5 +27,5 @@ - "templates/evoadmin-web/web-mail.{{ inventory_hostname }}.tpl.j2" - "templates/evoadmin-web/web-mail.{{ host_group }}.tpl.j2" - "templates/evoadmin-web/web-mail.tpl.j2" - - "web-mail.default.tpl.j2" + - "web-mail.tpl.j2" register: web_mail_tpl_template \ No newline at end of file diff --git a/webapps/evoadmin-web/tasks/web.yml b/webapps/evoadmin-web/tasks/web.yml index 12ad23b6..8a79b8b2 100644 --- a/webapps/evoadmin-web/tasks/web.yml +++ b/webapps/evoadmin-web/tasks/web.yml @@ -54,8 +54,8 @@ group: evoadmin force: "{{ evoadmin_web_config_local_php_force | bool }}" with_first_found: - - "templates/evoadmin-web/config.local.{{ inventory_hostname }}.conf.j2" - - "templates/evoadmin-web/config.local.{{ host_group }}.conf.j2" - - "templates/evoadmin-web/config.local.conf.j2" + - "templates/evoadmin-web/config.local.{{ inventory_hostname }}.php.j2" + - "templates/evoadmin-web/config.local.{{ host_group }}.php.j2" + - "templates/evoadmin-web/config.local.php.j2" - "config.local.conf.j2" register: evoadmin_web_config_local_php_template \ No newline at end of file