From: Neha Ojha Date: Fri, 3 Aug 2018 20:32:58 +0000 (+0000) Subject: infrastructure-playbooks/lv-create.yml: don't use action to copy X-Git-Tag: v3.2.0beta2~56 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=186c4e11c7832eeb676409171d401a0ba2864f2a;p=ceph-ansible.git infrastructure-playbooks/lv-create.yml: don't use action to copy Signed-off-by: Neha Ojha --- diff --git a/infrastructure-playbooks/lv-create.yml b/infrastructure-playbooks/lv-create.yml index 9d5e64096..c485c8a63 100644 --- a/infrastructure-playbooks/lv-create.yml +++ b/infrastructure-playbooks/lv-create.yml @@ -70,11 +70,8 @@ - "{{ hdd_devices }}" # Write ending configuration logfile - - name: write output for osds.yml to logfile - action: template src=templates/logfile.j2 dest=/tmp/logfile.txt - delegate_to: localhost - - - name: Print closing message - debug: - msg: "Wrote yaml for osds.yml to /tmp/logfile.txt" + - name: write output for osds.yml to logfile /tmp/logfile.txt + template: + src: templates/logfile.j2 + dest: /tmp/logfile.txt delegate_to: localhost