From 5a56cd709df52896ad64ed551309d8f9b3c56023 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Mon, 7 Mar 2022 18:00:06 +0100 Subject: [PATCH] Update to 2022-03-07 18:00 --- roles/penpot/defaults/main.yml | 4 ++-- roles/penpot/tasks/main.yml | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/roles/penpot/defaults/main.yml b/roles/penpot/defaults/main.yml index 5d76666..74a3e1f 100644 --- a/roles/penpot/defaults/main.yml +++ b/roles/penpot/defaults/main.yml @@ -1,7 +1,7 @@ --- # Penpot version to deploy -penpot_version: 1.12.0-beta +penpot_version: 1.12.1-beta # SHould ansible manage upgrades. If False, only the initial install will be done penpot_manage_upgrade: True @@ -10,7 +10,7 @@ penpot_root_dir: /opt/penpot # URL of the archive penpot_archive_url: https://github.com/penpot/penpot/archive/refs/tags/{{ penpot_version }}.tar.gz # Expected sha256 of the archive -penpot_archive_sha256: 7435a6454921b3997d9a982af5f83a663727ebbd3d3c17b64090316dd01e046f +penpot_archive_sha256: d169bd0a121c429ee9e44dc676a09f5e872064b7f4acc5e01ac0dd9aeb039c3e # User under which penpot will run. Will be created penpot_user: penpot diff --git a/roles/penpot/tasks/main.yml b/roles/penpot/tasks/main.yml index c27ed38..ffc8abe 100644 --- a/roles/penpot/tasks/main.yml +++ b/roles/penpot/tasks/main.yml @@ -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: penpot_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: penpot_install_mode | default('none') == 'upgrade' tags: always + - include_tasks: cleanup.yml tags: always