1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Try to skip task.

This commit is contained in:
Felix Fontein 2021-04-30 22:18:43 +02:00
parent 519f6fe876
commit ff0c899a86

View file

@ -37,7 +37,7 @@
systemd: systemd:
name: dbus name: dbus
state: started state: started
when: ansible_service_mgr == 'systemd' and ansible_distribution == 'Fedora' when: ansible_service_mgr == 'systemd' and ansible_distribution == 'Fedora' and (ansible_facts.distribution_major_version | int) < 34
- name: Kill all postgres processes - name: Kill all postgres processes
shell: 'pkill -u {{ pg_user }}' shell: 'pkill -u {{ pg_user }}'