├── .editorconfig ├── .envrc ├── .gitattributes ├── .github ├── CODEOWNERS ├── copilot-instructions.md ├── instructions │ └── project.instructions.md ├── lock.yml └── workflows │ ├── ci.yml │ ├── conventional-commits.yml │ ├── copilot-setup-steps.yml │ ├── prevent-file-change.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .markdownlint-cli2.yaml ├── .mdlrc ├── .overcommit.yml ├── .release-please-manifest.json ├── .rubocop.yml ├── .vscode └── extensions.json ├── .windsurf └── rules │ └── definition-of-done.md ├── .yamllint ├── Berksfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dangerfile ├── LICENSE ├── README.md ├── TESTING.md ├── UPGRADING.md ├── chefignore ├── documentation ├── .gitkeep ├── README.md ├── partial │ ├── README.md │ ├── _config_file.md │ └── _connection.md ├── postgresql_access.md ├── postgresql_config.md ├── postgresql_database.md ├── postgresql_extension.md ├── postgresql_ident.md ├── postgresql_install.md ├── postgresql_role.md └── postgresql_service.md ├── kitchen.dokken.yml ├── kitchen.exec.yml ├── kitchen.global.yml ├── kitchen.yml ├── libraries ├── _utils.rb ├── access.rb ├── config.rb ├── helpers.rb ├── ident.rb ├── sql.rb └── sql │ ├── _connection.rb │ ├── _utils.rb │ ├── attribute.rb │ ├── database.rb │ ├── extension.rb │ └── role.rb ├── metadata.rb ├── mise.toml ├── release-please-config.json ├── renovate.json ├── resources ├── access.rb ├── config.rb ├── database.rb ├── extension.rb ├── ident.rb ├── install.rb ├── partial │ ├── _config_file.rb │ └── _connection.rb ├── role.rb └── service.rb ├── spec ├── libraries │ └── helpers_spec.rb └── spec_helper.rb ├── templates └── default │ ├── createcluster.conf.erb │ ├── pg_hba.conf.erb │ ├── pg_ident.conf.erb │ ├── postgresql.conf.erb │ └── systemd │ └── 10-pid.conf.erb └── test ├── cookbooks └── test │ ├── metadata.rb │ ├── recipes │ ├── access.rb │ ├── all_repos_install.rb │ ├── client_install.rb │ ├── extension.rb │ ├── ident.rb │ ├── initdb_locale.rb │ ├── multi_client.rb │ ├── no_repos_install.rb │ ├── repository.rb │ ├── server_install.rb │ └── server_install_os.rb │ └── templates │ └── default │ └── pg_hba.conf.erb └── integration ├── access ├── controls │ └── base_access.rb └── inspec.yml ├── all_repos_install ├── controls │ └── all_repos_spec.rb └── inspec.yml ├── client_install ├── controls │ └── client_spec.rb └── inspec.yml ├── client_multi_install ├── controls │ └── client_spec.rb └── inspec.yml ├── extension ├── controls │ └── extension_spec.rb └── inspec.yml ├── ident ├── controls │ ├── database.rb │ └── ident_map.rb └── inspec.yml ├── initdb_locale ├── controls │ └── default_spec.rb └── inspec.yml ├── no_repos_install ├── controls │ └── no_repos_spec.rb ├── inspec.yml └── no_repos_spec.rb ├── repo ├── controls │ └── repo_spec.rb.rb └── inspec.yml ├── server_install ├── controls │ └── server_spec.rb └── inspec.yml └── server_install_os ├── controls ├── access.rb ├── database.rb └── server_spec.rb └── inspec.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use chefworkstation 2 | export KITCHEN_GLOBAL_YAML=kitchen.global.yml 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @sous-chefs/maintainers 2 | -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/instructions/project.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.github/instructions/project.instructions.md -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/conventional-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.github/workflows/conventional-commits.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/prevent-file-change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.github/workflows/prevent-file-change.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint-cli2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.markdownlint-cli2.yaml -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.mdlrc -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "12.4.0" 3 | } 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.windsurf/rules/definition-of-done.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.windsurf/rules/definition-of-done.md -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/.yamllint -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/Dangerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/TESTING.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/chefignore -------------------------------------------------------------------------------- /documentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/partial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/partial/README.md -------------------------------------------------------------------------------- /documentation/partial/_config_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/partial/_config_file.md -------------------------------------------------------------------------------- /documentation/partial/_connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/partial/_connection.md -------------------------------------------------------------------------------- /documentation/postgresql_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/postgresql_access.md -------------------------------------------------------------------------------- /documentation/postgresql_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/postgresql_config.md -------------------------------------------------------------------------------- /documentation/postgresql_database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/postgresql_database.md -------------------------------------------------------------------------------- /documentation/postgresql_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/postgresql_extension.md -------------------------------------------------------------------------------- /documentation/postgresql_ident.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/postgresql_ident.md -------------------------------------------------------------------------------- /documentation/postgresql_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/postgresql_install.md -------------------------------------------------------------------------------- /documentation/postgresql_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/postgresql_role.md -------------------------------------------------------------------------------- /documentation/postgresql_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/documentation/postgresql_service.md -------------------------------------------------------------------------------- /kitchen.dokken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/kitchen.dokken.yml -------------------------------------------------------------------------------- /kitchen.exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/kitchen.exec.yml -------------------------------------------------------------------------------- /kitchen.global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/kitchen.global.yml -------------------------------------------------------------------------------- /kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/kitchen.yml -------------------------------------------------------------------------------- /libraries/_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/_utils.rb -------------------------------------------------------------------------------- /libraries/access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/access.rb -------------------------------------------------------------------------------- /libraries/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/config.rb -------------------------------------------------------------------------------- /libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/helpers.rb -------------------------------------------------------------------------------- /libraries/ident.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/ident.rb -------------------------------------------------------------------------------- /libraries/sql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/sql.rb -------------------------------------------------------------------------------- /libraries/sql/_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/sql/_connection.rb -------------------------------------------------------------------------------- /libraries/sql/_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/sql/_utils.rb -------------------------------------------------------------------------------- /libraries/sql/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/sql/attribute.rb -------------------------------------------------------------------------------- /libraries/sql/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/sql/database.rb -------------------------------------------------------------------------------- /libraries/sql/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/sql/extension.rb -------------------------------------------------------------------------------- /libraries/sql/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/libraries/sql/role.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/metadata.rb -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/mise.toml -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/release-please-config.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/renovate.json -------------------------------------------------------------------------------- /resources/access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/access.rb -------------------------------------------------------------------------------- /resources/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/config.rb -------------------------------------------------------------------------------- /resources/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/database.rb -------------------------------------------------------------------------------- /resources/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/extension.rb -------------------------------------------------------------------------------- /resources/ident.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/ident.rb -------------------------------------------------------------------------------- /resources/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/install.rb -------------------------------------------------------------------------------- /resources/partial/_config_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/partial/_config_file.rb -------------------------------------------------------------------------------- /resources/partial/_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/partial/_connection.rb -------------------------------------------------------------------------------- /resources/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/role.rb -------------------------------------------------------------------------------- /resources/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/resources/service.rb -------------------------------------------------------------------------------- /spec/libraries/helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/spec/libraries/helpers_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/default/createcluster.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/templates/default/createcluster.conf.erb -------------------------------------------------------------------------------- /templates/default/pg_hba.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/templates/default/pg_hba.conf.erb -------------------------------------------------------------------------------- /templates/default/pg_ident.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/templates/default/pg_ident.conf.erb -------------------------------------------------------------------------------- /templates/default/postgresql.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/templates/default/postgresql.conf.erb -------------------------------------------------------------------------------- /templates/default/systemd/10-pid.conf.erb: -------------------------------------------------------------------------------- 1 | [Service] 2 | PIDFile=/var/run/postgresql/<%=@version%>-main.pid 3 | -------------------------------------------------------------------------------- /test/cookbooks/test/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/access.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/all_repos_install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/all_repos_install.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/client_install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/client_install.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/extension.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/ident.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/ident.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/initdb_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/initdb_locale.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/multi_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/multi_client.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/no_repos_install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/no_repos_install.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/repository.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/server_install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/server_install.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/server_install_os.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/recipes/server_install_os.rb -------------------------------------------------------------------------------- /test/cookbooks/test/templates/default/pg_hba.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/cookbooks/test/templates/default/pg_hba.conf.erb -------------------------------------------------------------------------------- /test/integration/access/controls/base_access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/access/controls/base_access.rb -------------------------------------------------------------------------------- /test/integration/access/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/access/inspec.yml -------------------------------------------------------------------------------- /test/integration/all_repos_install/controls/all_repos_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/all_repos_install/controls/all_repos_spec.rb -------------------------------------------------------------------------------- /test/integration/all_repos_install/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/all_repos_install/inspec.yml -------------------------------------------------------------------------------- /test/integration/client_install/controls/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/client_install/controls/client_spec.rb -------------------------------------------------------------------------------- /test/integration/client_install/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/client_install/inspec.yml -------------------------------------------------------------------------------- /test/integration/client_multi_install/controls/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/client_multi_install/controls/client_spec.rb -------------------------------------------------------------------------------- /test/integration/client_multi_install/inspec.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: client-multi 3 | -------------------------------------------------------------------------------- /test/integration/extension/controls/extension_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/extension/controls/extension_spec.rb -------------------------------------------------------------------------------- /test/integration/extension/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/extension/inspec.yml -------------------------------------------------------------------------------- /test/integration/ident/controls/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/ident/controls/database.rb -------------------------------------------------------------------------------- /test/integration/ident/controls/ident_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/ident/controls/ident_map.rb -------------------------------------------------------------------------------- /test/integration/ident/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/ident/inspec.yml -------------------------------------------------------------------------------- /test/integration/initdb_locale/controls/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/initdb_locale/controls/default_spec.rb -------------------------------------------------------------------------------- /test/integration/initdb_locale/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/initdb_locale/inspec.yml -------------------------------------------------------------------------------- /test/integration/no_repos_install/controls/no_repos_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/no_repos_install/controls/no_repos_spec.rb -------------------------------------------------------------------------------- /test/integration/no_repos_install/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/no_repos_install/inspec.yml -------------------------------------------------------------------------------- /test/integration/no_repos_install/no_repos_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/no_repos_install/no_repos_spec.rb -------------------------------------------------------------------------------- /test/integration/repo/controls/repo_spec.rb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/repo/controls/repo_spec.rb.rb -------------------------------------------------------------------------------- /test/integration/repo/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/repo/inspec.yml -------------------------------------------------------------------------------- /test/integration/server_install/controls/server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/server_install/controls/server_spec.rb -------------------------------------------------------------------------------- /test/integration/server_install/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/server_install/inspec.yml -------------------------------------------------------------------------------- /test/integration/server_install_os/controls/access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/server_install_os/controls/access.rb -------------------------------------------------------------------------------- /test/integration/server_install_os/controls/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/server_install_os/controls/database.rb -------------------------------------------------------------------------------- /test/integration/server_install_os/controls/server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/server_install_os/controls/server_spec.rb -------------------------------------------------------------------------------- /test/integration/server_install_os/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sous-chefs/postgresql/HEAD/test/integration/server_install_os/inspec.yml --------------------------------------------------------------------------------