Another attempt to get Fedora 31's dnf issues resolved in testing.

This commit is contained in:
Jeff Geerling 2020-04-03 12:01:47 -05:00
parent 7fd6cb9d17
commit de20ffd533

View File

@ -9,7 +9,11 @@
when: ansible_os_family == 'Debian' when: ansible_os_family == 'Debian'
- name: Wait for systemd to complete initialization. # noqa 303 - name: Wait for systemd to complete initialization. # noqa 303
command: systemctl status systemd-tmpfiles-setup.service command: systemctl is-system-running
register: systemctl_status
until: "'running' in systemctl_status.stdout"
retries: 30
delay: 5
when: ansible_service_mgr == 'systemd' when: ansible_service_mgr == 'systemd'
changed_when: false changed_when: false