Update to 2021-03-09 13:00

master
Daniel Berteaud 4 years ago
parent f41793ca00
commit aa34e35af1
  1. 4
      roles/appsmith/defaults/main.yml
  2. 4
      roles/framadate/defaults/main.yml
  3. 2
      roles/n8n/defaults/main.yml
  4. 5
      roles/n8n/tasks/install.yml

@ -1,11 +1,11 @@
---
# Version to deploy
appsmith_version: 1.4.1
appsmith_version: 1.4.2
# URL of the source archive
appsmith_archive_url: https://github.com/appsmithorg/appsmith/archive/v{{ appsmith_version }}.tar.gz
# sha1sum of the archive
appsmith_archive_sha1: e8dd05a5b2ee1e213ecfbd7a01c315f193eceb52
appsmith_archive_sha1: 99baeef4b2a70cf3fffd3f7dde66dd6f198e6538
# Root directory where appsmith will be installed
appsmith_root_dir: /opt/appsmith

@ -7,7 +7,7 @@ framadate_id: 1
framadate_root_dir: /opt/framadate_{{ framadate_id }}
# The version to deploy
framadate_version: '1.1.12'
framadate_version: '1.1.14'
# Should ansible manage upgrades, or only initial installation
framadate_manage_upgrade: True
@ -16,7 +16,7 @@ framadate_manage_upgrade: True
framadate_zip_url: https://framagit.org/framasoft/framadate/framadate/-/archive/{{ framadate_version }}/framadate-{{ framadate_version }}.zip
# The sha1 checksum of the archive
framadate_zip_sha1: d3d5c3bc8a6f1e05dfb0a201d9ddf0138abfb1da
framadate_zip_sha1: 6c09ab4c99a0cf1ff6249df44fd73a1a70530928
# The user account under which PHP is executed
framadate_php_user: php-framadate_{{ framadate_id }}

@ -1,7 +1,7 @@
---
# Version to deploy
n8n_version: 0.109.0
n8n_version: 0.110.3
# Root directory where n8n will be installed
n8n_root_dir: /opt/n8n
# User account under which n8n will run

@ -11,6 +11,11 @@
- python3
tags: n8n
- name: Wipe node_module on upgrade
file: path={{ n8n_root_dir }}/app/node_modules state=absent
when: n8n_install_mode == 'upgrade'
tags: n8n
- name: Install n8n
npm:
name: n8n

Loading…
Cancel
Save