From a60fe7e2e9241685142adfdedda11898f5c7eb32 Mon Sep 17 00:00:00 2001 From: Dryusdan Date: Sun, 24 Jan 2021 17:06:42 +0100 Subject: [PATCH] replace dict with loop --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 0490c2d..209fe46 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -65,7 +65,7 @@ shell: "unzip -o ghost-latest.zip 'content/*' -d ./" args: chdir: "{{ item.home }}/" - with_dict: "{{ ghost }}" + loop: "{{ ghost }}" become: yes become_user : "{{ item.account }}" when: ghost_deploy_site in item.name