add bookworm support
This commit is contained in:
parent
feee78918c
commit
23795e06ac
2 changed files with 7 additions and 1 deletions
|
|
@ -5,3 +5,9 @@ postgresql:
|
|||
allowed_hosts: {}
|
||||
dbs: {}
|
||||
users: {}
|
||||
|
||||
distro_pg_version_mapping:
|
||||
stretch: "9.6"
|
||||
buster: "11"
|
||||
bullseye: "13"
|
||||
bookworm: "15"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
pg_version: "{% if ansible_distribution_release == 'stretch' %}9.6{% endif %}{% if ansible_distribution_release == 'buster' %}11{% endif %}{%if ansible_distribution_release == 'bullseye' %}13{% endif %}"
|
||||
pg_version: "{{ distro_pg_version_mapping[ansible_distribution_release] }}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue