From 3e194e169070213c0bcfd007c97222ce318c6556 Mon Sep 17 00:00:00 2001 From: Luis Cacho Date: Wed, 14 Mar 2018 17:24:38 -0500 Subject: [PATCH] Fix the apache_config_path on Debian.yml vars file By fixing this variable to the correct sites-available path should not fail on Debian flavored distros. The change is from this /etc/apache/sites-available to /etc/apache2/sites-available Change-Id: I8252ee7a2338b679260e8dc4c0296539972d7d35 --- vars/Debian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/Debian.yml b/vars/Debian.yml index 16d313f..340ee4f 100644 --- a/vars/Debian.yml +++ b/vars/Debian.yml @@ -31,4 +31,4 @@ apache_service: apache2 apache_user: www-data apache_group: www-data apache_log_path: /var/log/apache2 -apache_config_path: /etc/apache/sites-available +apache_config_path: /etc/apache2/sites-available