├── .README.html ├── .ansible-lint ├── .codespell_ignores ├── .codespellrc ├── .commitlintrc.js ├── .fmf └── version ├── .github ├── CODEOWNERS ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── ansible-lint.yml │ ├── ansible-managed-var-comment.yml │ ├── ansible-test.yml │ ├── build_docs.yml │ ├── changelog_to_tag.yml │ ├── codespell.yml │ ├── markdownlint.yml │ ├── pr-title-lint.yml │ ├── qemu-kvm-integration-tests.yml │ ├── test_converting_readme.yml │ ├── tft.yml │ ├── tft_citest_bad.yml │ ├── weekly_ci.yml │ └── woke.yml ├── .gitignore ├── .markdownlint.yaml ├── .ostree ├── README.md ├── get_ostree_data.sh ├── packages-runtime-CentOS-10.txt ├── packages-runtime-CentOS-8.txt ├── packages-runtime-CentOS-9.txt ├── packages-runtime-Fedora.txt ├── packages-runtime-RedHat-10.txt ├── packages-runtime-RedHat-8.txt ├── packages-runtime-RedHat-9.txt └── roles-runtime.txt ├── .pandoc_template.html5 ├── .yamllint.yml ├── CHANGELOG.md ├── LICENSE ├── README-ansible.md ├── README-ostree.md ├── README.md ├── ansible_pytest_extra_requirements.txt ├── contributing.md ├── custom_requirements.txt ├── defaults └── main.yml ├── examples ├── basic.yml ├── certificate.yml ├── inputfile.yml └── simple.sql ├── handlers └── main.yml ├── meta ├── collection-requirements.yml └── main.yml ├── molecule └── default │ ├── Dockerfile.j2 │ └── molecule.yml ├── molecule_extra_requirements.txt ├── plans ├── README-plans.md └── test_playbooks_parallel.fmf ├── pylint_extra_requirements.txt ├── pytest_extra_requirements.txt ├── tasks ├── certificate.yml ├── input_sql_file.yml ├── main.yml └── set_vars.yml ├── templates ├── pg_hba.conf.j2 ├── postgresql-internal.conf.j2 └── postgresql.conf.j2 ├── tests ├── roles │ ├── caller │ │ ├── tasks │ │ │ └── main.yml │ │ └── vars │ │ │ └── main.yml │ └── linux-system-roles.postgresql │ │ ├── defaults │ │ ├── handlers │ │ ├── meta │ │ ├── tasks │ │ ├── templates │ │ └── vars ├── setup-snapshot.yml ├── simple.sql ├── tasks │ ├── check_header.yml │ ├── clean_instance.yml │ └── install_and_check.yml ├── templates │ └── get_ansible_managed.j2 ├── tests_bootc_e2e.yml ├── tests_certificate.yml ├── tests_config_files.yml ├── tests_custom_certificate.yml ├── tests_default.yml ├── tests_include_vars_from_parent.yml ├── tests_input_file.yml ├── tests_versions.yml └── vars │ └── rh_distros_vars.yml ├── tox.ini └── vars ├── AlmaLinux_10.yml ├── AlmaLinux_8.yml ├── AlmaLinux_9.yml ├── CentOS_10.yml ├── CentOS_8.yml ├── CentOS_9.yml ├── RedHat_10.yml ├── RedHat_8.yml ├── RedHat_9.yml ├── Rocky_10.yml ├── Rocky_8.yml ├── Rocky_9.yml └── main.yml /.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.README.html -------------------------------------------------------------------------------- /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.codespell_ignores: -------------------------------------------------------------------------------- 1 | passt 2 | -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.codespellrc -------------------------------------------------------------------------------- /.commitlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.commitlintrc.js -------------------------------------------------------------------------------- /.fmf/version: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ansible-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/ansible-lint.yml -------------------------------------------------------------------------------- /.github/workflows/ansible-managed-var-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/ansible-managed-var-comment.yml -------------------------------------------------------------------------------- /.github/workflows/ansible-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/ansible-test.yml -------------------------------------------------------------------------------- /.github/workflows/build_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/build_docs.yml -------------------------------------------------------------------------------- /.github/workflows/changelog_to_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/changelog_to_tag.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/pr-title-lint.yml -------------------------------------------------------------------------------- /.github/workflows/qemu-kvm-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/qemu-kvm-integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/test_converting_readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/test_converting_readme.yml -------------------------------------------------------------------------------- /.github/workflows/tft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/tft.yml -------------------------------------------------------------------------------- /.github/workflows/tft_citest_bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/tft_citest_bad.yml -------------------------------------------------------------------------------- /.github/workflows/weekly_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/weekly_ci.yml -------------------------------------------------------------------------------- /.github/workflows/woke.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.github/workflows/woke.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.ostree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.ostree/README.md -------------------------------------------------------------------------------- /.ostree/get_ostree_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.ostree/get_ostree_data.sh -------------------------------------------------------------------------------- /.ostree/packages-runtime-CentOS-10.txt: -------------------------------------------------------------------------------- 1 | postgresql-server 2 | -------------------------------------------------------------------------------- /.ostree/packages-runtime-CentOS-8.txt: -------------------------------------------------------------------------------- 1 | @postgresql:13/server 2 | -------------------------------------------------------------------------------- /.ostree/packages-runtime-CentOS-9.txt: -------------------------------------------------------------------------------- 1 | postgresql-server 2 | -------------------------------------------------------------------------------- /.ostree/packages-runtime-Fedora.txt: -------------------------------------------------------------------------------- 1 | postgresql-server 2 | -------------------------------------------------------------------------------- /.ostree/packages-runtime-RedHat-10.txt: -------------------------------------------------------------------------------- 1 | postgresql-server 2 | -------------------------------------------------------------------------------- /.ostree/packages-runtime-RedHat-8.txt: -------------------------------------------------------------------------------- 1 | @postgresql:13/server 2 | -------------------------------------------------------------------------------- /.ostree/packages-runtime-RedHat-9.txt: -------------------------------------------------------------------------------- 1 | postgresql-server 2 | -------------------------------------------------------------------------------- /.ostree/roles-runtime.txt: -------------------------------------------------------------------------------- 1 | certificate 2 | -------------------------------------------------------------------------------- /.pandoc_template.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/.pandoc_template.html5 -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | --- 3 | ignore: | 4 | /.tox/ 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ansible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/README-ansible.md -------------------------------------------------------------------------------- /README-ostree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/README-ostree.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/README.md -------------------------------------------------------------------------------- /ansible_pytest_extra_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/ansible_pytest_extra_requirements.txt -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/contributing.md -------------------------------------------------------------------------------- /custom_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/custom_requirements.txt -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /examples/basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/examples/basic.yml -------------------------------------------------------------------------------- /examples/certificate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/examples/certificate.yml -------------------------------------------------------------------------------- /examples/inputfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/examples/inputfile.yml -------------------------------------------------------------------------------- /examples/simple.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/examples/simple.sql -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/collection-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/meta/collection-requirements.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule_extra_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/molecule_extra_requirements.txt -------------------------------------------------------------------------------- /plans/README-plans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/plans/README-plans.md -------------------------------------------------------------------------------- /plans/test_playbooks_parallel.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/plans/test_playbooks_parallel.fmf -------------------------------------------------------------------------------- /pylint_extra_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/pylint_extra_requirements.txt -------------------------------------------------------------------------------- /pytest_extra_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/pytest_extra_requirements.txt -------------------------------------------------------------------------------- /tasks/certificate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tasks/certificate.yml -------------------------------------------------------------------------------- /tasks/input_sql_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tasks/input_sql_file.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/set_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tasks/set_vars.yml -------------------------------------------------------------------------------- /templates/pg_hba.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/templates/pg_hba.conf.j2 -------------------------------------------------------------------------------- /templates/postgresql-internal.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/templates/postgresql-internal.conf.j2 -------------------------------------------------------------------------------- /templates/postgresql.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/templates/postgresql.conf.j2 -------------------------------------------------------------------------------- /tests/roles/caller/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/roles/caller/tasks/main.yml -------------------------------------------------------------------------------- /tests/roles/caller/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/roles/caller/vars/main.yml -------------------------------------------------------------------------------- /tests/roles/linux-system-roles.postgresql/defaults: -------------------------------------------------------------------------------- 1 | ../../../defaults -------------------------------------------------------------------------------- /tests/roles/linux-system-roles.postgresql/handlers: -------------------------------------------------------------------------------- 1 | ../../../handlers -------------------------------------------------------------------------------- /tests/roles/linux-system-roles.postgresql/meta: -------------------------------------------------------------------------------- 1 | ../../../meta -------------------------------------------------------------------------------- /tests/roles/linux-system-roles.postgresql/tasks: -------------------------------------------------------------------------------- 1 | ../../../tasks -------------------------------------------------------------------------------- /tests/roles/linux-system-roles.postgresql/templates: -------------------------------------------------------------------------------- 1 | ../../../templates -------------------------------------------------------------------------------- /tests/roles/linux-system-roles.postgresql/vars: -------------------------------------------------------------------------------- 1 | ../../../vars -------------------------------------------------------------------------------- /tests/setup-snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/setup-snapshot.yml -------------------------------------------------------------------------------- /tests/simple.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/simple.sql -------------------------------------------------------------------------------- /tests/tasks/check_header.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tasks/check_header.yml -------------------------------------------------------------------------------- /tests/tasks/clean_instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tasks/clean_instance.yml -------------------------------------------------------------------------------- /tests/tasks/install_and_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tasks/install_and_check.yml -------------------------------------------------------------------------------- /tests/templates/get_ansible_managed.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/templates/get_ansible_managed.j2 -------------------------------------------------------------------------------- /tests/tests_bootc_e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tests_bootc_e2e.yml -------------------------------------------------------------------------------- /tests/tests_certificate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tests_certificate.yml -------------------------------------------------------------------------------- /tests/tests_config_files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tests_config_files.yml -------------------------------------------------------------------------------- /tests/tests_custom_certificate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tests_custom_certificate.yml -------------------------------------------------------------------------------- /tests/tests_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tests_default.yml -------------------------------------------------------------------------------- /tests/tests_include_vars_from_parent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tests_include_vars_from_parent.yml -------------------------------------------------------------------------------- /tests/tests_input_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tests_input_file.yml -------------------------------------------------------------------------------- /tests/tests_versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/tests_versions.yml -------------------------------------------------------------------------------- /tests/vars/rh_distros_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tests/vars/rh_distros_vars.yml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/tox.ini -------------------------------------------------------------------------------- /vars/AlmaLinux_10.yml: -------------------------------------------------------------------------------- 1 | RedHat_10.yml -------------------------------------------------------------------------------- /vars/AlmaLinux_8.yml: -------------------------------------------------------------------------------- 1 | RedHat_8.yml -------------------------------------------------------------------------------- /vars/AlmaLinux_9.yml: -------------------------------------------------------------------------------- 1 | RedHat_9.yml -------------------------------------------------------------------------------- /vars/CentOS_10.yml: -------------------------------------------------------------------------------- 1 | RedHat_10.yml -------------------------------------------------------------------------------- /vars/CentOS_8.yml: -------------------------------------------------------------------------------- 1 | RedHat_8.yml -------------------------------------------------------------------------------- /vars/CentOS_9.yml: -------------------------------------------------------------------------------- 1 | RedHat_9.yml -------------------------------------------------------------------------------- /vars/RedHat_10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/vars/RedHat_10.yml -------------------------------------------------------------------------------- /vars/RedHat_8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/vars/RedHat_8.yml -------------------------------------------------------------------------------- /vars/RedHat_9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/vars/RedHat_9.yml -------------------------------------------------------------------------------- /vars/Rocky_10.yml: -------------------------------------------------------------------------------- 1 | RedHat_10.yml -------------------------------------------------------------------------------- /vars/Rocky_8.yml: -------------------------------------------------------------------------------- 1 | RedHat_8.yml -------------------------------------------------------------------------------- /vars/Rocky_9.yml: -------------------------------------------------------------------------------- 1 | RedHat_9.yml -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-system-roles/postgresql/HEAD/vars/main.yml --------------------------------------------------------------------------------