Commit 2fbd1280 by Kevin Falcone

copy rather than template this file

It contains things that look like jinja, but are not.
DEVOPS-3836

Fixes https://github.com/edx/configuration/pull/2821
parent e89f820e
......@@ -60,9 +60,11 @@
# Create scripts to add paver autocomplete
- name: add paver autocomplete
template:
src=paver_autocomplete dest={{ item.home }}/.paver_autocomplete
owner={{ item.user }} mode=755
copy:
src: paver_autocomplete
dest: "{{ item.home }}/.paver_autocomplete"
owner: "{{ item.user }}"
mode: 0755
with_items: localdev_accounts
when: item.user != 'None'
ignore_errors: yes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment