From a1a78044b54cdbb91fe2fe1b885706315ffdbd4b Mon Sep 17 00:00:00 2001 From: Harm Weites Date: Fri, 31 Jul 2015 20:46:05 +0200 Subject: [PATCH] Remove the explicit chown root This is not possible when running multihost ansible. Essentially this should've been part of #1476293. Change-Id: I53baccf5f89e71ce1313524815f928ea04908a05 Partitially-Implements: blueprint ansible-service --- ansible/roles/mariadb/tasks/bootstrap.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/mariadb/tasks/bootstrap.yml b/ansible/roles/mariadb/tasks/bootstrap.yml index 8eea886d53..1bc6c8a450 100644 --- a/ansible/roles/mariadb/tasks/bootstrap.yml +++ b/ansible/roles/mariadb/tasks/bootstrap.yml @@ -21,7 +21,7 @@ run_once: True - name: Writing hostname of host with existing cluster files to temp file - local_action: copy content={{ ansible_hostname }} dest=/tmp/kolla_mariadb_cluster owner=root group=root mode=0600 + local_action: copy content={{ ansible_hostname }} dest=/tmp/kolla_mariadb_cluster mode=0600 changed_when: False always_run: True when: exists.rc == 0