From 5e493c15acf366f86e84cd6bfe85429de1d4bb43 Mon Sep 17 00:00:00 2001 From: Emilien Mantel Date: Mon, 14 Mar 2016 19:21:47 +0100 Subject: [PATCH] Fix deprecation warning --- tasks/vhost.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/vhost.yml b/tasks/vhost.yml index 34d0bf9..26f34e9 100644 --- a/tasks/vhost.yml +++ b/tasks/vhost.yml @@ -3,7 +3,7 @@ - name: FAIL | Check filenames fail: msg="Forbidden keyword default on vhost {{ item.name if item.name is string else item.name[0] }}" when: item.filename is defined and item.filename == 'default' - with_items: nginx_vhosts + with_items: "{{ nginx_vhosts }}" - name: FAIL | Check vhost and SSL/TLS support fail: msg="Missmatch configuration for vhost {{ item.name if item.name is string else item.name[0] }}"