From 39116d63b1a4c118941140f7260a1ea61a84a79d Mon Sep 17 00:00:00 2001 From: Robert de Bock Date: Tue, 6 Nov 2018 21:55:04 +0100 Subject: [PATCH] Use the correct service name for Debian and Ubuntu. --- vars/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vars/main.yml b/vars/main.yml index 241c3c6..e09a9c9 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -30,8 +30,10 @@ httpd_packages: "{{ _httpd_packages[ansible_distribution] | default(_httpd_packa _httpd_service: default: httpd Alpine: apache2 + Debian: apache2 openSUSE Leap: apache2 openSUSE Tumbleweed: apache2 + Ubuntu: apache2 httpd_service: "{{ _httpd_service[ansible_distribution] | default(_httpd_service['default']) }}"