first commit

This commit is contained in:
ace
2024-05-15 15:52:33 +03:00
commit 9a5d1bddec
24 changed files with 522 additions and 0 deletions

13
vars/Debian.yaml Normal file
View File

@ -0,0 +1,13 @@
wal_g_apt_repository:
- repo: deb [trusted=yes] https://mirror.0xace.cc/debian/custom/ default all
filename: mirror.0xace.cc
wal_g_pg_home_dir: "/var/lib/postgresql"
wal_g_pg_data_dir: "{{ wal_g_pg_home_dir }}/{{ wal_g_pg_major_version }}/{{ wal_g_pg_cluster_name }}"
wal_g_pg_cluster_name: "main"
wal_g_postgresql_package_name_regex: 'postgresql-.[{{ wal_g_postgresql_supported_versions | join(",") }}]'
wal_g_package_name: "wal-g"
wal_g_package: "{{ wal_g_package_name }}={{ wal_g_version }}-{{ wal_g_version_build }}"
wal_g_version_build: "1"

14
vars/RedHat.yaml Normal file
View File

@ -0,0 +1,14 @@
wal_g_rpm_repository:
- name: "mirror.0xace.cc"
file: "mirror.0xace.cc"
description: "0xace.cc repository"
baseurl: "https://mirror.0xace.cc/rhel/$releasever/custom/"
gpgcheck: no
wal_g_pg_home_dir: "/var/lib/pgsql"
wal_g_pg_data_dir: "{{ wal_g_pg_home_dir }}/{{ wal_g_pg_major_version }}/data"
wal_g_postgresql_package_name_regex: 'postgresql.[{{ wal_g_postgresql_supported_versions | join(",") }}]-server'
wal_g_package_name: "wal-g"
wal_g_package: "{{ wal_g_package_name }}-{{ wal_g_version }}"

0
vars/main.yaml Normal file
View File