From e6d38854d6c371123e7c8cba6d65b9facc6b97f4 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Tue, 13 Sep 2016 13:27:27 +0200 Subject: [PATCH] Copy mongodb_bootstrap_replication_set.js to /tmp on the deployment host Change-Id: I502801c0ce6b9ff6b8216d3fce9957061593674d Closes-bug: #1622993 --- ansible/roles/mongodb/tasks/bootstrap_cluster.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ansible/roles/mongodb/tasks/bootstrap_cluster.yml b/ansible/roles/mongodb/tasks/bootstrap_cluster.yml index 8d445f36f9..31068f8b97 100644 --- a/ansible/roles/mongodb/tasks/bootstrap_cluster.yml +++ b/ansible/roles/mongodb/tasks/bootstrap_cluster.yml @@ -1,7 +1,6 @@ --- - name: Copying the mongodb replication set bootstrap script - template: src=bootstrap_cluster.js.j2 dest=/tmp/mongodb_bootstrap_replication_set.js - delegate_to: "{{ groups['mongodb'][0] }}" + local_action: template src=bootstrap_cluster.js.j2 dest=/tmp/mongodb_bootstrap_replication_set.js run_once: True - name: Bootstraping the mongodb replication set @@ -12,8 +11,7 @@ run_once: True - name: Deleting the mongodb replication set bootstrap script - file: path=/tmp/mongodb_bootstrap_replication_set.js state=absent + local_action: file path=/tmp/mongodb_bootstrap_replication_set.js state=absent changed_when: false failed_when: false - delegate_to: "{{ groups['mongodb'][0] }}" run_once: True