Files
ansible/roles/bac/tasks/main.yml
2025-02-28 19:16:52 +01:00

12 lines
245 B
YAML

---
- name: Install BaC application
ansible.builtin.unarchive:
remote_src: true
src: "{{ bac_url }}"
dest: "{{ bac_home }}"
owner: root
group: www-data
mode: "a-rwx,u+rwX,g+rX"
extra_opts: ['--strip-components=1']