From 66564234bde88865261cfaf9d389683869604f88 Mon Sep 17 00:00:00 2001 From: "tommaso.piccioli" Date: Mon, 15 Oct 2018 15:37:56 +0200 Subject: [PATCH] apache modules fix --- apache/tasks/apache-modules.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apache/tasks/apache-modules.yml b/apache/tasks/apache-modules.yml index fe082f3c..75bbed8f 100644 --- a/apache/tasks/apache-modules.yml +++ b/apache/tasks/apache-modules.yml @@ -1,4 +1,11 @@ --- +- name: Load the required modules + apache2_module: name={{ item }} state=present force=yes + with_items: '{{ apache_default_modules }}' + notify: apache2 reload + ignore_errors: True + tags: [ 'apache', 'apache_modules' ] + - name: Install the libapache2-mod-rpaf module apt: pkg=libapache2-mod-rpaf state=present when: apache_rpaf_install