add tzdata-legacy optional dependency (#80334)
gitea/publik-devinst/pipeline/head This commit looks good Details

Optional as it is only available from trixie onwards.
This playbook should still be compatible with bullseye & bookworm.
This commit is contained in:
Paul Marillonnet 2023-08-08 11:48:38 +02:00
parent 6a298e8830
commit 8d65d786eb
1 changed files with 8 additions and 0 deletions

View File

@ -38,6 +38,14 @@
state: present
become: yes
- name: Install optional packages
apt:
name:
- tzdata-legacy
state: present
become: yes
ignore_errors: true
- name: "create the postgresql user named {{user}}"
postgresql_user:
name: "{{user}}"