Start dbus when setting up postgresql tests.

This commit is contained in:
Matt Clay 2019-04-05 16:44:09 -07:00
parent 2b9b5f5bb7
commit c309570540

View file

@ -17,6 +17,12 @@
- 'default{{ python_suffix }}.yml'
paths: '../vars'
- name: make sure the dbus service is started under systemd
systemd:
name: dbus
state: started
when: ansible_service_mgr == 'systemd' and ansible_distribution == 'Fedora'
# Make sure we start fresh
- name: stop postgresql service
service: name={{ postgresql_service }} state=stopped