Skip to content

Commit

Permalink
[ansible] Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
goldyfruit committed Nov 20, 2023
1 parent a10c0bc commit 4fe3028
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/roles/ovos_installer/tasks/sound.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
- pipewire
- pipewire-alsa
- alsa-utils
when: (not ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('23.04', '>=')) or
(not ansible_distribution == 'Debian' and ansible_distribution_version is version('12.0', '>='))
when: (not ansible_distribution == 'Ubuntu' and not ansible_distribution_version is version('23.04', '>=')) or
(not ansible_distribution == 'Debian' and not ansible_distribution_version is version('12.0', '>='))

- name: Install PulseAudio on older Debian and Ubuntu versions
ansible.builtin.package:
Expand Down

0 comments on commit 4fe3028

Please sign in to comment.