Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---
- # defaults file for postgres_install
- ansible_python_interpreter: /usr/bin/python3
- # define postgres distribution version and sha512 checksum of .tar.gz package from scb-repo
- postgres_version: postgresql-12.6
- # postgres directories and postgres user
- ansible_become_user: root
- ansible_postgres_user: postgres
- step_user: stepuser
- postgres_user_home: /home/postgres
- db_base: /opt/db
- postgres_base: /opt/db/postgres
- postgres_bin: /opt/db/postgres/bin
- postgres_home: /opt/db/postgres/postgresql
- postgres_install: /opt/db/postgres/install
- postgres_nrpe: /opt/db/postgres/nrpe
- postgres_temp: /opt/db/postgres/tmp
- postgres_tools: /opt/db/postgres/tools
- postgres_data: /opt/db/data/postgres/data
- postgres_arch: /opt/db/backup/postgres/archives
- postgres_back: /opt/db/backup/postgres/backups
- # postgres artifacts and repos
- postgres_major_version: "{{ postgres_version.split('.')[0] }}"
- postgres_distribution: "{{ postgres_version }}.tar.gz"
- postgres_mirror: http://some.domain.de/scb-repo
- postgres_repo: "{{ postgres_mirror }}/postgres/Linux/{{ postgres_version.split('-')[-2] }}"
- postgres_auth_user: postgres
- postgres_auth_pass: "{{ lookup('password', '/dev/null length=20 chars=ascii_letters,digits') }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement