From aeab09938a197adc85d34d1bb31bca9149706960 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Wed, 30 Nov 2016 15:08:42 -0600 Subject: [PATCH] ceph-mon: no need to include playbook_dir when fetching configs This causes a bug when fetch_directory is not a relative path to the playbook location. Signed-off-by: Andrew Schoen --- roles/ceph-mon/tasks/docker/fetch_configs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-mon/tasks/docker/fetch_configs.yml b/roles/ceph-mon/tasks/docker/fetch_configs.yml index b507bccaf..3ceac9f97 100644 --- a/roles/ceph-mon/tasks/docker/fetch_configs.yml +++ b/roles/ceph-mon/tasks/docker/fetch_configs.yml @@ -21,7 +21,7 @@ - name: try to fetch ceph config and keys copy: - src: "{{ playbook_dir }}/{{ fetch_directory }}/docker_mon_files/{{ item.0 }}" + src: "{{ fetch_directory }}/docker_mon_files/{{ item.0 }}" dest: "{{ item.0 }}" owner: root group: root