From 58318993d38b9265b61f9853e098264a22980cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Trellu?= Date: Wed, 22 Nov 2023 10:04:38 -0500 Subject: [PATCH] [ansible/sound] Run the sound server detection after the flush handlers --- ansible/roles/ovos_installer/tasks/sound.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/ovos_installer/tasks/sound.yml b/ansible/roles/ovos_installer/tasks/sound.yml index 74190fc8..f0c92898 100644 --- a/ansible/roles/ovos_installer/tasks/sound.yml +++ b/ansible/roles/ovos_installer/tasks/sound.yml @@ -33,6 +33,9 @@ state: touch notify: Start Sound Server +- name: Flush handlers sound + ansible.builtin.meta: flush_handlers + - name: Re-detect sound server ansible.builtin.shell: cmd: | @@ -44,6 +47,3 @@ executable: /bin/bash register: _detect_sound_server changed_when: false - -- name: Flush handlers sound - ansible.builtin.meta: flush_handlers