: move phpbb to app dir
Some checks failed
ansible-lint / lint-everything (push) Failing after 1m35s

This commit is contained in:
VC
2025-04-04 20:38:30 +02:00
parent 1dafa87b40
commit 4e5afb182a
13 changed files with 272 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
---
- name: Init db
ansible.builtin.include_tasks: db.yml
- name: Install phpbb
ansible.builtin.include_tasks: phpbb.yml
- name: Install phpbbs styles
ansible.builtin.include_tasks: phpbb_styles.yml
loop: "{{ phpbb_styles }}"
- name: Install phpbbs languages
ansible.builtin.include_tasks: phpbb_languages.yml
loop: "{{ phpbb_languages }}"
- name: Install phpbbs extensions
ansible.builtin.include_tasks: phpbb_exts.yml
loop: "{{ phpbb_exts }}"
loop_control:
loop_var: ext
- name: Custom part
ansible.builtin.include_tasks: phpbb_customs.yml