2020-09-25 08:01:17 +02:00
|
|
|
|
####################################################################
|
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
|
####################################################################
|
|
|
|
|
|
2020-07-02 09:01:20 +02:00
|
|
|
|
# Exit when Suse because it causes CI problems
|
|
|
|
|
- meta: end_play
|
|
|
|
|
when: ansible_os_family == 'Suse'
|
|
|
|
|
|
2020-07-14 17:28:08 +02:00
|
|
|
|
# To avoid hangings on service start/stop postgres during CI runs:
|
|
|
|
|
- meta: end_play
|
|
|
|
|
when: ansible_facts.distribution == 'CentOS' and ansible_facts.distribution_major_version == '8'
|
|
|
|
|
|
2021-04-30 23:49:33 +02:00
|
|
|
|
# Temporary disable Fedora 34
|
|
|
|
|
- meta: end_play
|
|
|
|
|
when: ansible_facts.distribution == 'Fedora' and ansible_facts.distribution_major_version == '34'
|
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: python 2
|
|
|
|
|
set_fact:
|
|
|
|
|
python_suffix: ''
|
|
|
|
|
when: ansible_python_version is version('3', '<')
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: python 3
|
|
|
|
|
set_fact:
|
|
|
|
|
python_suffix: -py3
|
|
|
|
|
when: ansible_python_version is version('3', '>=')
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Include distribution and Python version specific variables
|
|
|
|
|
include_vars: '{{ lookup(''first_found'', params) }}'
|
|
|
|
|
vars:
|
|
|
|
|
params:
|
|
|
|
|
files:
|
|
|
|
|
- '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}{{ python_suffix }}.yml'
|
|
|
|
|
- '{{ ansible_distribution }}-{{ ansible_distribution_version }}{{ python_suffix }}.yml'
|
|
|
|
|
- '{{ ansible_os_family }}{{ python_suffix }}.yml'
|
|
|
|
|
- default{{ python_suffix }}.yml
|
|
|
|
|
paths:
|
|
|
|
|
- '{{ role_path }}/vars'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: make sure the dbus service is started under systemd
|
|
|
|
|
systemd:
|
|
|
|
|
name: dbus
|
|
|
|
|
state: started
|
|
|
|
|
when: ansible_service_mgr == 'systemd' and ansible_distribution == 'Fedora'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-07-02 09:01:20 +02:00
|
|
|
|
- name: Kill all postgres processes
|
|
|
|
|
shell: 'pkill -u {{ pg_user }}'
|
|
|
|
|
become: yes
|
|
|
|
|
when: ansible_facts.distribution == 'CentOS' and ansible_facts.distribution_major_version == '8'
|
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: stop postgresql service
|
|
|
|
|
service: name={{ postgresql_service }} state=stopped
|
|
|
|
|
ignore_errors: true
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: remove old db (RedHat or Suse)
|
|
|
|
|
file:
|
|
|
|
|
path: '{{ pg_dir }}'
|
|
|
|
|
state: absent
|
|
|
|
|
ignore_errors: true
|
|
|
|
|
when: ansible_os_family == "RedHat" or ansible_os_family == "Suse"
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: remove old db (FreeBSD)
|
|
|
|
|
file:
|
|
|
|
|
path: '{{ pg_dir }}'
|
|
|
|
|
state: absent
|
|
|
|
|
ignore_errors: true
|
|
|
|
|
when: ansible_os_family == "FreeBSD"
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: remove old db config and files (debian)
|
|
|
|
|
file:
|
|
|
|
|
path: '{{ loop_item }}'
|
|
|
|
|
state: absent
|
|
|
|
|
ignore_errors: true
|
|
|
|
|
when: ansible_os_family == "Debian"
|
|
|
|
|
loop:
|
|
|
|
|
- /etc/postgresql
|
|
|
|
|
- /var/lib/postgresql
|
|
|
|
|
loop_control:
|
|
|
|
|
loop_var: loop_item
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: install dependencies for postgresql test
|
|
|
|
|
package:
|
|
|
|
|
name: '{{ postgresql_package_item }}'
|
|
|
|
|
state: present
|
|
|
|
|
with_items: '{{ postgresql_packages }}'
|
|
|
|
|
loop_control:
|
|
|
|
|
loop_var: postgresql_package_item
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: initialize postgres (FreeBSD)
|
|
|
|
|
command: /usr/local/etc/rc.d/postgresql oneinitdb
|
|
|
|
|
when: ansible_os_family == "FreeBSD"
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Initialize postgres (RedHat systemd)
|
|
|
|
|
command: postgresql-setup initdb
|
|
|
|
|
when: ansible_os_family == "RedHat" and ansible_service_mgr == "systemd"
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Initialize postgres (RedHat sysv)
|
|
|
|
|
command: /sbin/service postgresql initdb
|
|
|
|
|
when: ansible_os_family == "RedHat" and ansible_service_mgr != "systemd"
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Initialize postgres (Debian)
|
|
|
|
|
shell: . /usr/share/postgresql-common/maintscripts-functions && set_system_locale && /usr/bin/pg_createcluster -u postgres {{ pg_ver }} main
|
|
|
|
|
args:
|
|
|
|
|
creates: /etc/postgresql/{{ pg_ver }}/
|
|
|
|
|
when: ansible_os_family == 'Debian'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Initialize postgres (Suse)
|
2020-07-02 09:01:20 +02:00
|
|
|
|
service: name=postgresql state=stopped
|
|
|
|
|
when: ansible_os_family == 'Suse'
|
|
|
|
|
|
|
|
|
|
- name: Pause between stop and start postgresql
|
|
|
|
|
pause:
|
|
|
|
|
seconds: 5
|
|
|
|
|
when: ansible_os_family == 'Suse'
|
|
|
|
|
|
|
|
|
|
- name: Initialize postgres (Suse)
|
|
|
|
|
service: name=postgresql state=started
|
2020-03-09 10:11:07 +01:00
|
|
|
|
when: ansible_os_family == 'Suse'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Copy pg_hba into place
|
|
|
|
|
template:
|
|
|
|
|
src: files/pg_hba.conf
|
|
|
|
|
dest: '{{ pg_hba_location }}'
|
|
|
|
|
owner: '{{ pg_user }}'
|
|
|
|
|
group: '{{ pg_group }}'
|
|
|
|
|
mode: '0644'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Generate locales (Debian)
|
|
|
|
|
locale_gen:
|
|
|
|
|
name: '{{ item }}'
|
|
|
|
|
state: present
|
|
|
|
|
with_items:
|
|
|
|
|
- pt_BR
|
|
|
|
|
- es_ES
|
|
|
|
|
when: ansible_os_family == 'Debian'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- block:
|
|
|
|
|
- name: Install langpacks (RHEL8)
|
|
|
|
|
yum:
|
|
|
|
|
name:
|
|
|
|
|
- glibc-langpack-es
|
|
|
|
|
- glibc-langpack-pt
|
|
|
|
|
- glibc-all-langpacks
|
|
|
|
|
state: present
|
|
|
|
|
when: ansible_distribution_major_version is version('8', '>=')
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Check if locales need to be generated (RedHat)
|
|
|
|
|
shell: localedef --list-archive | grep -a -q '^{{ locale }}$'
|
|
|
|
|
register: locale_present
|
|
|
|
|
ignore_errors: true
|
|
|
|
|
with_items:
|
|
|
|
|
- es_ES
|
|
|
|
|
- pt_BR
|
|
|
|
|
loop_control:
|
|
|
|
|
loop_var: locale
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Reinstall internationalization files
|
|
|
|
|
shell: yum -y reinstall glibc-common || yum -y install glibc-common
|
|
|
|
|
args:
|
|
|
|
|
warn: false
|
|
|
|
|
when: locale_present is failed
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Generate locale (RedHat)
|
|
|
|
|
command: localedef -f ISO-8859-1 -i {{ item.locale }} {{ item.locale }}
|
|
|
|
|
when: item is failed
|
|
|
|
|
with_items: '{{ locale_present.results }}'
|
|
|
|
|
when: ansible_os_family == 'RedHat' and ansible_distribution != 'Fedora'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Install glibc langpacks (Fedora >= 24)
|
|
|
|
|
package:
|
|
|
|
|
name: '{{ item }}'
|
|
|
|
|
state: latest
|
|
|
|
|
with_items:
|
|
|
|
|
- glibc-langpack-es
|
|
|
|
|
- glibc-langpack-pt
|
|
|
|
|
when: ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('24', '>=')
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: enable postgresql service (FreeBSD)
|
|
|
|
|
lineinfile:
|
|
|
|
|
path: /etc/rc.conf
|
|
|
|
|
line: postgresql_enable="YES"
|
|
|
|
|
when: ansible_os_family == "FreeBSD"
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: start postgresql service
|
|
|
|
|
service: name={{ postgresql_service }} state=started
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-07-02 09:01:20 +02:00
|
|
|
|
- name: Pause between start and stop
|
|
|
|
|
pause:
|
|
|
|
|
seconds: 5
|
|
|
|
|
|
|
|
|
|
- name: Kill all postgres processes
|
|
|
|
|
shell: 'pkill -u {{ pg_user }}'
|
|
|
|
|
become: yes
|
|
|
|
|
when: ansible_facts.distribution == 'CentOS' and ansible_facts.distribution_major_version == '8'
|
|
|
|
|
ignore_errors: yes
|
|
|
|
|
register: terminate
|
|
|
|
|
|
|
|
|
|
- name: Stop postgresql service
|
|
|
|
|
service: name={{ postgresql_service }} state=stopped
|
|
|
|
|
when: terminate is not succeeded
|
|
|
|
|
|
|
|
|
|
- name: Pause between stop and start
|
|
|
|
|
pause:
|
|
|
|
|
seconds: 5
|
|
|
|
|
|
|
|
|
|
- name: Start postgresql service
|
|
|
|
|
service: name={{ postgresql_service }} state=started
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: copy control file for dummy ext
|
|
|
|
|
copy:
|
|
|
|
|
src: dummy.control
|
|
|
|
|
dest: /usr/share/postgresql/{{ pg_ver }}/extension/dummy.control
|
|
|
|
|
mode: '0444'
|
|
|
|
|
when: ansible_os_family == 'Debian'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: copy version files for dummy ext
|
|
|
|
|
copy:
|
|
|
|
|
src: '{{ item }}'
|
|
|
|
|
dest: /usr/share/postgresql/{{ pg_ver }}/extension/{{ item }}
|
|
|
|
|
mode: '0444'
|
|
|
|
|
with_items:
|
|
|
|
|
- dummy--1.0.sql
|
|
|
|
|
- dummy--2.0.sql
|
|
|
|
|
- dummy--3.0.sql
|
|
|
|
|
when: ansible_os_family == 'Debian'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: add update paths
|
|
|
|
|
file:
|
|
|
|
|
path: /usr/share/postgresql/{{ pg_ver }}/extension/{{ item }}
|
|
|
|
|
mode: '0444'
|
|
|
|
|
state: touch
|
|
|
|
|
with_items:
|
|
|
|
|
- dummy--1.0--2.0.sql
|
|
|
|
|
- dummy--2.0--3.0.sql
|
|
|
|
|
when: ansible_os_family == 'Debian'
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Get PostgreSQL version
|
|
|
|
|
become_user: '{{ pg_user }}'
|
|
|
|
|
become: true
|
|
|
|
|
shell: echo 'SHOW SERVER_VERSION' | psql --tuples-only --no-align --dbname postgres
|
|
|
|
|
register: postgres_version_resp
|
2020-06-18 11:11:40 +02:00
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
|
- name: Print PostgreSQL server version
|
|
|
|
|
debug:
|
|
|
|
|
msg: '{{ postgres_version_resp.stdout }}'
|