From 27489db848214db617b8bf3dc4080478e1fea5a5 Mon Sep 17 00:00:00 2001 From: Corbin Bartsch Date: Sun, 10 Apr 2022 17:33:13 -0400 Subject: [PATCH] Rewrote apache2_modules tasks --- tasks/apache2_modules.yaml | 36 +++++++----------------------------- 1 file changed, 7 insertions(+), 29 deletions(-) diff --git a/tasks/apache2_modules.yaml b/tasks/apache2_modules.yaml index 2ebce49..40c8479 100644 --- a/tasks/apache2_modules.yaml +++ b/tasks/apache2_modules.yaml @@ -1,35 +1,13 @@ --- -- name: Enable mod_rewrite +- name: Enable Apache2 modules community.general.apache2_module: name: rewrite state: present - notify: - - Restart Apache - -- name: Enable mod_headers - community.general.apache2_module: - name: headers - state: present - notify: - - Restart Apache - -- name: Enable mod_env - community.general.apache2_module: - name: env - state: present - notify: - - Restart Apache - -- name: Enable mod_dir - community.general.apache2_module: - name: dir - state: present - notify: - - Restart Apache - -- name: Enable mod_mime - community.general.apache2_module: - name: mime - state: present + with_items: + - rewrite + - headers + - env + - dir + - mime notify: - Restart Apache