Skip to content

Commit

Permalink
Tests: enable Fedora34 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersson007 authored May 4, 2021
1 parent 1e20ff1 commit 0862ad7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .azure-pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ stages:
test: centos8
- name: Fedora 33
test: fedora33
- name: Fedora 34
test: fedora34
- name: Ubuntu 18.04
test: ubuntu1804
- name: Ubuntu 20.04
Expand Down
7 changes: 6 additions & 1 deletion tests/integration/targets/setup_postgresql_db/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@
paths:
- '{{ role_path }}/vars'

- name: make sure the dbus service is started under systemd
- name: Make sure the dbus service is enabled under systemd
shell: systemctl enable dbus || systemctl enable dbus-broker
ignore_errors: yes
when: ansible_service_mgr == 'systemd' and ansible_distribution == 'Fedora'

- name: Make sure the dbus service is started under systemd
systemd:
name: dbus
state: started
Expand Down

0 comments on commit 0862ad7

Please sign in to comment.