From 88d910923c3291b5ffce13f1b303ec11a387b70f Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Wed, 2 Nov 2016 15:53:19 -0500 Subject: [PATCH] Fixes #110: Ansible 2.2 causes 'apache_packages' is undefined. --- tasks/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index 6146556..e013f39 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -10,6 +10,7 @@ # Setup/install tasks. - include: "setup-{{ ansible_os_family }}.yml" + static: no # Figure out what version of Apache is installed. - name: Get installed version of Apache. @@ -30,6 +31,7 @@ # Configure Apache. - include: "configure-{{ ansible_os_family }}.yml" + static: no - name: Ensure Apache has selected state and enabled on boot. service: