Update to 2022-03-07 17:00

This commit is contained in:
Daniel Berteaud
2022-03-07 17:00:06 +01:00
parent 1065df387c
commit 714e44f5c5
42 changed files with 92 additions and 136 deletions

View File

@@ -1,11 +1,11 @@
---
# Version to deploy
bookstack_version: '22.02.2'
bookstack_version: '22.02.3'
# URL of the arhive
bookstack_archive_url: https://github.com/BookStackApp/BookStack/archive/v{{ bookstack_version }}.tar.gz
# Expected sha256 of the archive
bookstack_archive_sha256: 7b7345c342bf665a2277ebaa9deead56010660606246d7b0b2d15119dcedf05f
bookstack_archive_sha256: 30f618e2795e3d759fb1ed87e7bb898d47ad0edd71a873797b294cc3e3f0cd79
# Should ansible handle bookstack upgrades or just the inintial install
bookstack_manage_upgrade: True

View File

@@ -2,23 +2,32 @@
- include_tasks: user.yml
tags: always
- include_tasks: directories.yml
tags: always
- include_tasks: facts.yml
tags: always
- include_tasks: archive_pre.yml
when: bookstack_install_mode | default('none') == 'upgrade'
tags: always
- include_tasks: install.yml
tags: always
- include_tasks: conf.yml
tags: always
- include_tasks: services.yml
tags: always
- include_tasks: write_version.yml
tags: always
- include_tasks: archive_post.yml
when: bookstack_install_mode | default('none') == 'upgrade'
tags: always
- include_tasks: cleanup.yml
tags: always