Skip to content

Commit

Permalink
Make cron.sh executable (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
micxer authored Oct 7, 2024
1 parent ae3e08b commit 84f8b00
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion tasks/nextcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,19 @@
mode: "0600"
backup: true
with_fileglob:
- nextcloud/*
- nextcloud/*.ini
- nextcloud/*.conf

- name: Copy cron.sh for nextcloud
ansible.builtin.copy:
src: "{{ item }}"
dest: "{{ docker_compose_generator_nextcloud_base_path }}/{{ item | basename }}"
owner: "{{ docker_compose_generator_nextcloud_user }}"
group: "{{ docker_compose_generator_nextcloud_group }}"
mode: "0750"
backup: true
with_fileglob:
- nextcloud/*.sh

- name: Write docker-compose file
ansible.builtin.template:
Expand Down

0 comments on commit 84f8b00

Please sign in to comment.