12 lines
245 B
YAML
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']
|