Update to 2022-07-21 17:00

master
Daniel Berteaud 2 years ago
parent 5cb0ab9952
commit 9994cd037b
  1. 2
      roles/appsmith/defaults/main.yml
  2. 3
      roles/appsmith/tasks/install.yml

@ -7,6 +7,8 @@ appsmith_archive_url: https://github.com/appsmithorg/appsmith/archive/v{{ appsmi
# sha1sum of the archive
appsmith_archive_sha1: 67afc6178b2dea86071b728544c6733cb04bede4
# Version to node.js
appsmith_node_version: 16.14.0
# Root directory where appsmith will be installed
appsmith_root_dir: /opt/appsmith
# Should ansible handle upgrades (True) or only initial install (False)

@ -52,7 +52,7 @@
tags: appsmith
- name: Install node specific version
command: n 14.15.4
command: n "{{ appsmith_node_version }}"
tags: appsmith
- name: Move old NodeJS
@ -76,6 +76,7 @@
dest: "{{ appsmith_root_dir }}/tmp"
checksum: sha1:{{ appsmith_archive_sha1 }}
- name: Extract appsmith archive
unarchive:
src: "{{ appsmith_root_dir }}/tmp/appsmith-{{ appsmith_version }}.tar.gz"

Loading…
Cancel
Save