Files
ansible/roles/phpbb/tasks/phpbb_languages.yml
VC 4e5afb182a
Some checks failed
ansible-lint / lint-everything (push) Failing after 1m35s
: move phpbb to app dir
2025-04-04 20:38:30 +02:00

12 lines
288 B
YAML

---
- name: Extract phpbb language
ansible.builtin.unarchive:
remote_src: true
src: "{{ item.url | replace('%VERSION%', item.version) }}"
dest: "{{ phpbb_app_home }}"
owner: root
group: www-data
mode: "a-rwx,u+rwX,g+rX"
extra_opts: ['--strip-components=1']