From 88de9286253c996552237a8b90d5666bb718c0f1 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Thu, 13 Oct 2016 12:05:56 +0000 Subject: [PATCH] s/delegate/delegate_to/ Signed-off-by: Patrick Uiterwijk --- roles/ipa/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/ipa/tasks/main.yml b/roles/ipa/tasks/main.yml index 7a90e6b241..6be2b7ba56 100644 --- a/roles/ipa/tasks/main.yml +++ b/roles/ipa/tasks/main.yml @@ -39,7 +39,7 @@ when: inventory_hostname.startswith("ipa01") - name: create replica file - delegate: ipa01.phx2.fedoraproject.org + delegate_to: ipa01.phx2.fedoraproject.org command: ipa-replica-prepare --password={{ipa_dm_password}} --ip-address={{eth0_ip}} @@ -47,7 +47,7 @@ when: env != "staging" and not inventory_hostname.startswith("ipa01") - name: retrieve replica file - delegate: ipa01.phx2.fedoraproject.org + delegate_to: ipa01.phx2.fedoraproject.org fetch: src=/var/lib/ipa/replica-info-{{inventory_hostname}}.gpg dest=/tmp/ipa_replica_{{inventory_hostname}} when: env != "staging" and not inventory_hostname.startswith("ipa01")