Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize copying of directories #577

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions ansible/roles/compute_init/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
- tasks

- name: Inject files from roles
copy:
synchronize:
src: '{{ item.src }}'
dest: '/etc/ansible-init/playbooks/{{ item.dest }}'
owner: root
group: root
mode: 0644
archive: false
rsync_opts: ["-p", "--chmod=D770,F644", "--owner=root", "--group=root"]
recursive: true
use_ssh_args: true
become: true
loop:
- src: ../../resolv_conf/templates/resolv.conf.j2
dest: templates/resolv.conf.j2
Expand Down
Loading