mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-15 17:53:09 +02:00
Update to 2022-03-02 10:00
This commit is contained in:
parent
161bbac261
commit
7036d5ed58
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
# Penpot version to deploy
|
# Penpot version to deploy
|
||||||
penpot_version: 1.11.2-beta
|
penpot_version: 1.12.0-beta
|
||||||
# SHould ansible manage upgrades. If False, only the initial install will be done
|
# SHould ansible manage upgrades. If False, only the initial install will be done
|
||||||
penpot_manage_upgrade: True
|
penpot_manage_upgrade: True
|
||||||
|
|
||||||
@ -10,7 +10,7 @@ penpot_root_dir: /opt/penpot
|
|||||||
# URL of the archive
|
# URL of the archive
|
||||||
penpot_archive_url: https://github.com/penpot/penpot/archive/refs/tags/{{ penpot_version }}.tar.gz
|
penpot_archive_url: https://github.com/penpot/penpot/archive/refs/tags/{{ penpot_version }}.tar.gz
|
||||||
# Expected sha256 of the archive
|
# Expected sha256 of the archive
|
||||||
penpot_archive_sha256: 53841697c889989d83851f4759713d0cbe62648b12cee065a78f7cea2986d818
|
penpot_archive_sha256: 7435a6454921b3997d9a982af5f83a663727ebbd3d3c17b64090316dd01e046f
|
||||||
# User under which penpot will run. Will be created
|
# User under which penpot will run. Will be created
|
||||||
penpot_user: penpot
|
penpot_user: penpot
|
||||||
|
|
||||||
|
@ -1,14 +1,24 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- include: user.yml
|
- include_tasks: user.yml
|
||||||
- include: directories.yml
|
tags: always
|
||||||
- include: facts.yml
|
- include_tasks: directories.yml
|
||||||
- include: archive_pre.yml
|
tags: always
|
||||||
when: penpot_install_mode == 'upgrade'
|
- include_tasks: facts.yml
|
||||||
- include: install.yml
|
tags: always
|
||||||
- include: conf.yml
|
- include_tasks: archive_pre.yml
|
||||||
- include: services.yml
|
when: penpot_install_mode | default('none') == 'upgrade'
|
||||||
- include: write_version.yml
|
tags: always
|
||||||
- include: archive_post.yml
|
- include_tasks: install.yml
|
||||||
when: penpot_install_mode == 'upgrade'
|
tags: always
|
||||||
- include: cleanup.yml
|
- 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: penpot_install_mode | default('none') == 'upgrade'
|
||||||
|
tags: always
|
||||||
|
- include_tasks: cleanup.yml
|
||||||
|
tags: always
|
||||||
|
Loading…
x
Reference in New Issue
Block a user