Skip to content

Commit

Permalink
Merge pull request #903 from mkllnk/ci-testing
Browse files Browse the repository at this point in the history
Fix CI build on Github Actions
  • Loading branch information
dacook authored Oct 9, 2023
2 parents a73c77e + d9b11f2 commit 454a453
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,8 @@ jobs:
${{ runner.os }}-ruby-
${{ runner.os }}-
- name: Uninstall conflicting packages
run: sudo apt remove nginx libgd3

- name: Test Playbooks
run: ansible-playbook tests/suite.yml --limit test --connection local
4 changes: 2 additions & 2 deletions bin/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
version: 3.4.2

- src: jdauphant.nginx
version: v2.8.1
version: v2.21.2

- src: coopdevs.certbot_nginx
version: v0.3.0
Expand All @@ -15,7 +15,7 @@
version: v2.0.14

- src: geerlingguy.postgresql
version: 3.4.0
version: 3.5.0

- src: libre-ops.multi_redis
version: 1.0.1
Expand Down
9 changes: 9 additions & 0 deletions roles/dbserver/tasks/postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,12 @@
login_password: "{{ db_password }}"
lc_collate: "{{ postgres_encoding }}"
lc_ctype: "{{ postgres_encoding }}"

- include_role:
name: geerlingguy.postgresql
tasks_from: users_props
vars:
postgresql_user: postgres
postgresql_users:
- name: "{{ db_user }}"
role_attr_flags: "{{ db_user_roles }}"

0 comments on commit 454a453

Please sign in to comment.