Update to 2022-05-12 16:00

This commit is contained in:
Daniel Berteaud 2022-05-12 16:00:11 +02:00
parent d29b1a062f
commit 90a2690843
4 changed files with 6 additions and 6 deletions

View File

@ -1,13 +1,13 @@
---
# The version to deploy
paperless_version: 1.7.0
paperless_version: 1.7.1
# Instance ID, as you can deploy several instances on the same server
paperless_id: 1
# URL of the paperless archive
paperless_archive_url: https://github.com/paperless-ngx/paperless-ngx/releases/download/ngx-{{ paperless_version }}/paperless-ngx-{{ paperless_version }}.tar.xz
paperless_archive_url: https://github.com/paperless-ngx/paperless-ngx/releases/download/v{{ paperless_version }}/paperless-ngx-v{{ paperless_version }}.tar.xz
# Expected checksum
paperless_archive_sha256: 7a06ece28c1196594a30233f7147acf7a911412bc96893cb212e1dc6b47f0235
paperless_archive_sha256: f2fc7886f6c8a9a0a18cfc92f10d1aaf66f3fe92f311dc6817b3f680111e1737
# Should ansible handle install and upgrades, or only initial install
paperless_manage_upgrade: True
# Root directory where paperless will be installed

View File

@ -14,7 +14,7 @@
- name: Extract archive
unarchive:
src: "{{ paperless_root_dir }}/tmp/paperless-ngx-{{ paperless_version }}.tar.xz"
src: "{{ paperless_root_dir }}/tmp/paperless-ngx-v{{ paperless_version }}.tar.xz"
dest: "{{ paperless_root_dir }}/tmp"
remote_src: True

View File

@ -10,7 +10,7 @@ pga_src_ip: []
# Root dir where the app will be installed
pga_root_dir: /opt/pgadmin4_{{ pga_id }}
# Version to deploy
pga_version: '6.8'
pga_version: '6.9'
# When pg_auth is an empty list, pgAdmin will be in single user mode
# You can set it to a list, eg

View File

@ -16,7 +16,7 @@
when: ansible_os_family == 'Debian'
tags: postfix
- name: Checck if mailman is installed
- name: Check if mailman is installed
stat: path={{ mailman_root_dir | default('/opt/mailman') }}
register: postfix_mailman
tags: postfix