Skip to content

Commit 2e9e90b

Browse files
committed
Fix RedHat entry in apache_config_path
With CentOS 7, ansible is expecting to have RedHat as an attribute for the dict so Discover configurations task fails with an undefined variable error. Closes-Bug: #1750573 Change-Id: I5bf9c4057ca9f75d730add9e429d0ef050c6d900
1 parent fddf343 commit 2e9e90b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

roles/apache-logs-conf/tasks/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
apache_config_paths:
5858
'Debian': '/etc/apache2/sites-enabled/'
5959
'Suse': '/etc/apache2/conf.d/'
60-
'Redhat': '/etc/httpd/conf.d/'
60+
'RedHat': '/etc/httpd/conf.d/'
6161

6262
- name: Discover configurations
6363
find:

0 commit comments

Comments
 (0)