Initial
This commit is contained in:
11
roles/geerlingguy.postgresql/vars/Amazon-2.yml
Normal file
11
roles/geerlingguy.postgresql/vars/Amazon-2.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
__postgresql_version: "9.2"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-libs
|
8
roles/geerlingguy.postgresql/vars/Arch.yml
Normal file
8
roles/geerlingguy.postgresql/vars/Arch.yml
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
__postgresql_version: "14"
|
||||
__postgresql_data_dir: "/var/lib/postgres/data"
|
||||
__postgresql_bin_path: "/usr/sbin"
|
||||
__postgresql_config_path: "/var/lib/postgres/data"
|
||||
__postgresql_daemon: "postgresql"
|
||||
__postgresql_packages:
|
||||
- postgresql
|
12
roles/geerlingguy.postgresql/vars/Debian-10.yml
Normal file
12
roles/geerlingguy.postgresql/vars/Debian-10.yml
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
__postgresql_version: "11"
|
||||
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
|
||||
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_daemon: "postgresql@{{ postgresql_version }}-main"
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-contrib
|
||||
- libpq-dev
|
||||
# Debian 10 uses Python 3 by default.
|
||||
postgresql_python_library: python3-psycopg2
|
11
roles/geerlingguy.postgresql/vars/Debian-11.yml
Normal file
11
roles/geerlingguy.postgresql/vars/Debian-11.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
__postgresql_version: "13"
|
||||
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
|
||||
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_daemon: "postgresql@{{ postgresql_version }}-main"
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-contrib
|
||||
- libpq-dev
|
||||
postgresql_python_library: python3-psycopg2
|
10
roles/geerlingguy.postgresql/vars/Debian-7.yml
Normal file
10
roles/geerlingguy.postgresql/vars/Debian-7.yml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
__postgresql_version: "9.1"
|
||||
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
|
||||
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-contrib
|
||||
- libpq-dev
|
10
roles/geerlingguy.postgresql/vars/Debian-8.yml
Normal file
10
roles/geerlingguy.postgresql/vars/Debian-8.yml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
__postgresql_version: "9.4"
|
||||
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
|
||||
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_daemon: "postgresql@{{ postgresql_version }}-main"
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-contrib
|
||||
- libpq-dev
|
10
roles/geerlingguy.postgresql/vars/Debian-9.yml
Normal file
10
roles/geerlingguy.postgresql/vars/Debian-9.yml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
__postgresql_version: "9.6"
|
||||
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
|
||||
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_daemon: "postgresql@{{ postgresql_version }}-main"
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-contrib
|
||||
- libpq-dev
|
12
roles/geerlingguy.postgresql/vars/Fedora-29.yml
Normal file
12
roles/geerlingguy.postgresql/vars/Fedora-29.yml
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
__postgresql_version: "10.5"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-libs
|
||||
postgresql_python_library: python2-psycopg2
|
13
roles/geerlingguy.postgresql/vars/Fedora-30.yml
Normal file
13
roles/geerlingguy.postgresql/vars/Fedora-30.yml
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
__postgresql_version: "11.2"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-libs
|
||||
# Fedora 30 containers only have python3 by default
|
||||
postgresql_python_library: python3-psycopg2
|
14
roles/geerlingguy.postgresql/vars/Fedora-31.yml
Normal file
14
roles/geerlingguy.postgresql/vars/Fedora-31.yml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
__postgresql_version: "11.5"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-libs
|
||||
__postgresql_unix_socket_directories_mode: '0755'
|
||||
# Fedora 31 containers only have python3 by default
|
||||
postgresql_python_library: python3-psycopg2
|
14
roles/geerlingguy.postgresql/vars/Fedora-32.yml
Normal file
14
roles/geerlingguy.postgresql/vars/Fedora-32.yml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
__postgresql_version: "12.2"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-libs
|
||||
__postgresql_unix_socket_directories_mode: '0755'
|
||||
# Fedora 32 containers only have python3 by default
|
||||
postgresql_python_library: python3-psycopg2
|
14
roles/geerlingguy.postgresql/vars/Fedora-34.yml
Normal file
14
roles/geerlingguy.postgresql/vars/Fedora-34.yml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
__postgresql_version: "13.4"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-libs
|
||||
__postgresql_unix_socket_directories_mode: '0755'
|
||||
# Fedora 32 containers only have python3 by default
|
||||
postgresql_python_library: python3-psycopg2
|
14
roles/geerlingguy.postgresql/vars/Fedora-35.yml
Normal file
14
roles/geerlingguy.postgresql/vars/Fedora-35.yml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
__postgresql_version: "13.4"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-libs
|
||||
__postgresql_unix_socket_directories_mode: '0755'
|
||||
# Fedora 32 containers only have python3 by default
|
||||
postgresql_python_library: python3-psycopg2
|
14
roles/geerlingguy.postgresql/vars/Fedora-36.yml
Normal file
14
roles/geerlingguy.postgresql/vars/Fedora-36.yml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
__postgresql_version: "14.1"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-libs
|
||||
__postgresql_unix_socket_directories_mode: '0755'
|
||||
# Fedora 32 containers only have python3 by default
|
||||
postgresql_python_library: python3-psycopg2
|
11
roles/geerlingguy.postgresql/vars/RedHat-7.yml
Normal file
11
roles/geerlingguy.postgresql/vars/RedHat-7.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
__postgresql_version: "9.2"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
- postgresql-libs
|
12
roles/geerlingguy.postgresql/vars/RedHat-8.yml
Normal file
12
roles/geerlingguy.postgresql/vars/RedHat-8.yml
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
__postgresql_version: "10"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
__postgresql_unix_socket_directories_mode: '0755'
|
||||
postgresql_python_library: python3-psycopg2
|
12
roles/geerlingguy.postgresql/vars/RedHat-9.yml
Normal file
12
roles/geerlingguy.postgresql/vars/RedHat-9.yml
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
__postgresql_version: "10"
|
||||
__postgresql_data_dir: "/var/lib/pgsql/data"
|
||||
__postgresql_bin_path: "/usr/bin"
|
||||
__postgresql_config_path: "/var/lib/pgsql/data"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-server
|
||||
- postgresql-contrib
|
||||
__postgresql_unix_socket_directories_mode: '0755'
|
||||
postgresql_python_library: python3-psycopg2
|
10
roles/geerlingguy.postgresql/vars/Ubuntu-16.yml
Normal file
10
roles/geerlingguy.postgresql/vars/Ubuntu-16.yml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
__postgresql_version: "9.5"
|
||||
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
|
||||
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-contrib
|
||||
- libpq-dev
|
11
roles/geerlingguy.postgresql/vars/Ubuntu-18.yml
Normal file
11
roles/geerlingguy.postgresql/vars/Ubuntu-18.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
__postgresql_version: "10"
|
||||
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
|
||||
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-contrib
|
||||
- libpq-dev
|
||||
postgresql_python_library: python3-psycopg2
|
11
roles/geerlingguy.postgresql/vars/Ubuntu-20.yml
Normal file
11
roles/geerlingguy.postgresql/vars/Ubuntu-20.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
__postgresql_version: "12"
|
||||
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
|
||||
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-contrib
|
||||
- libpq-dev
|
||||
postgresql_python_library: python3-psycopg2
|
11
roles/geerlingguy.postgresql/vars/Ubuntu-22.yml
Normal file
11
roles/geerlingguy.postgresql/vars/Ubuntu-22.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
__postgresql_version: "14"
|
||||
__postgresql_data_dir: "/var/lib/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_bin_path: "/usr/lib/postgresql/{{ __postgresql_version }}/bin"
|
||||
__postgresql_config_path: "/etc/postgresql/{{ __postgresql_version }}/main"
|
||||
__postgresql_daemon: postgresql
|
||||
__postgresql_packages:
|
||||
- postgresql
|
||||
- postgresql-contrib
|
||||
- libpq-dev
|
||||
postgresql_python_library: python3-psycopg2
|
Reference in New Issue
Block a user