roundcube/tasks/main.yml
meaz 1ed1adecc4 Upgrade Roundcube to 1.6.0 (#6)
Co-authored-by: meaz <meaz@disroot.org>
Reviewed-on: #6
Reviewed-by: muppeth <muppeth@no-reply@disroot.org>
2022-09-06 14:59:03 +00:00

25 lines
681 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- include: check.yml
- include: install.yml
when: "roundcube_version_installed.stdout != rcube_version"
- include: migrationDB.yml
when: "'ERROR 1146' in roundcube_installed.stderr"
# ERROR 1146 means the table doesn't exist
- include: upgrade.yml
when: (not "'ERROR 1146' in roundcube_installed.stderr") and (roundcube_version_installed.stdout != rcube_version)
- include: configure.yml
- include: custom_themes.yml
when: (rcube_custom_themes is defined) and (item.name | length > 0) and (item.repo | length > 0)
with_items: "{{ rcube_custom_themes }}"
- include: plugins.yml
- include: carddav.yml
when: rcube_plugins_carddav == 'yes'
tags: carddav