File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
3
- postgresql_default_version : 10
3
+ postgresql_default_version : 13
4
4
postgresql_backup_local_dir : ~postgres/backup
5
5
postgresql_backup_active_dir : " {{ postgresql_backup_local_dir }}/active"
6
6
postgresql_backup_mail_recipient : postgres
Original file line number Diff line number Diff line change 1
1
---
2
2
galaxy_info :
3
- author : The Galaxy Project
3
+ author : The Galaxy Project; (w/ customizations for usegalaxy.eu)
4
4
description : Install and manage a PostgreSQL (http://www.postgresql.org/) server.
5
5
company : The Galaxy Project
6
6
license : AFL v3.0
Original file line number Diff line number Diff line change 42
42
# # here but alas there is no `startswith` test
43
43
# loop: "{{ __postgresql_yum_repolist_result.results }}"
44
44
45
- - name : Install PostgreSQL (RedHat)
45
+
46
+ - name : Install PostgreSQL (RedHat < 8)
47
+ yum :
48
+ name : postgresql{{ __postgresql_version_dotless }}-server
49
+ when : ansible_distribution_major_version is version(8, '<')
50
+
51
+ # on RH-8 for installing the pgdg-version, the Appstream-repo must be disabled
52
+ - name : Install PostgreSQL (RedHat >= 8)
46
53
yum :
47
54
name : postgresql{{ __postgresql_version_dotless }}-server
55
+ disablerepo : AppStream
56
+ when : ansible_distribution_major_version is version(8, '>=')
48
57
49
58
- name : Check for pgdata directory
50
59
stat :
You can’t perform that action at this time.
0 commit comments