Skip to content

Commit

Permalink
Merge pull request #11 from pwalczysko/suggest-fixes
Browse files Browse the repository at this point in the history
Suggest fixes
  • Loading branch information
sbesson authored Aug 10, 2022
2 parents 7dccd65 + 15603cd commit 43f1231
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions hosts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
all:
hosts:
YOUR-HOST-NAME
4 changes: 2 additions & 2 deletions molecule/resources/tests/test_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

def test_db_running_and_enabled(host):
if host.system_info.distribution == 'ubuntu':
service = host.service('postgresql@11-main')
service = host.service('postgresql@13-main')
else:
service = host.service('postgresql-11')
service = host.service('postgresql-13')
assert service.is_running
assert service.is_enabled

Expand Down
4 changes: 2 additions & 2 deletions playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
include_vars: "{{ ansible_facts['os_family'] | lower }}.yml"
when: ansible_facts['os_family'] == "Debian"

- hosts: omero-all
- hosts: all
roles:
- role: ome.postgresql
postgresql_databases:
Expand All @@ -18,4 +18,4 @@
omero_server_rootpassword: ChangeMe
- role: ome.omero_web
vars:
postgresql_version: "11"
postgresql_version: "13"

0 comments on commit 43f1231

Please sign in to comment.