Update to 2023-07-29 01:00

This commit is contained in:
Daniel Berteaud 2023-07-29 01:00:15 +02:00
parent 090cec6a11
commit 846c668216
6 changed files with 19 additions and 5 deletions

View File

@ -53,13 +53,13 @@
- name: Extract videobridge archive - name: Extract videobridge archive
unarchive: unarchive:
src: "{{ jitsi_root_dir }}/src/videobridge/jvb/target/jitsi-videobridge-2.1-SNAPSHOT-archive.zip" src: "{{ jitsi_root_dir }}/src/videobridge/jvb/target/jitsi-videobridge-2.3-SNAPSHOT-archive.zip"
dest: "{{ jitsi_root_dir }}/tmp/" dest: "{{ jitsi_root_dir }}/tmp/"
remote_src: True remote_src: True
- name: Move videobridge to its final directory - name: Move videobridge to its final directory
synchronize: synchronize:
src: "{{ jitsi_root_dir }}/tmp/jitsi-videobridge-2.1-SNAPSHOT/" src: "{{ jitsi_root_dir }}/tmp/jitsi-videobridge-2.3-SNAPSHOT/"
dest: "{{ jitsi_root_dir }}/videobridge/" dest: "{{ jitsi_root_dir }}/videobridge/"
recursive: True recursive: True
delete: True delete: True

View File

@ -5,12 +5,12 @@
# You can set it to a number or a simple string (no special chars) # You can set it to a number or a simple string (no special chars)
kimai_id: 1 kimai_id: 1
# Kimai version to deploy # Kimai version to deploy
kimai_version: '2.0.28' kimai_version: '2.0.29'
# URL of the archive # URL of the archive
kimai_archive_url: https://github.com/kevinpapst/kimai2/archive/refs/tags/{{ kimai_version }}.tar.gz kimai_archive_url: https://github.com/kevinpapst/kimai2/archive/refs/tags/{{ kimai_version }}.tar.gz
# Expected sha256 of the archive # Expected sha256 of the archive
kimai_archive_sha256: 0a5f7406b68d31c4911415fdb7ae9cfccad9433d9e15756be22bbbd32f63402d kimai_archive_sha256: d04ff4199afd76b73cb00cda5eac5a48f735fda1b2573613f42d12e569a750d4
# Directory where kimai will be installed # Directory where kimai will be installed
kimai_root_dir: /opt/kimai_{{ kimai_id }} kimai_root_dir: /opt/kimai_{{ kimai_id }}

View File

@ -1,3 +1,3 @@
--- ---
nodejs_major_version: 16 nodejs_major_version: 18

View File

@ -0,0 +1,10 @@
---
- block:
- name: Detect installed version
shell: /usr/local/bin/vault version | perl -pe 's/Vault v(\d+(\.\d+)*)\s.*/$1/'
changed_when: False
register: vault_current_version
- set_fact:
vault_current_version: "{{ vault_current_version.stdout }}"
tags: vault,nomad,consul

View File

@ -3,6 +3,9 @@
- include_tasks: directories.yml - include_tasks: directories.yml
tags: always tags: always
- include_tasks: facts.yml
tags: always
- include_tasks: install.yml - include_tasks: install.yml
tags: always tags: always

View File

@ -9,6 +9,7 @@ StartLimitBurst=6
Before=consul.service Before=consul.service
Before=nomad.service Before=nomad.service
# Vault version {{ vault_current_version }}
[Service] [Service]
Type=notify Type=notify
User=root User=root