Skip to content

Commit

Permalink
Fix dependencies for Ubuntu 16 and 18
Browse files Browse the repository at this point in the history
  • Loading branch information
fcaffieri committed Jan 6, 2025
1 parent 8f14766 commit d407a89
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ansible-playbooks/provision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@
name: "{{ apt_deps }}"
state: present
update_cache: yes
when: ansible_os_family == 'Debian'
when:
- ansible_os_family == 'Debian'
- ansible_distribution_version not in ["16.04", "18.04"]
when:
- install_deps is defined
- install_deps | bool
Expand Down Expand Up @@ -166,7 +168,7 @@
when:
- ansible_os_family == 'Debian'
- ansible_distribution == "Ubuntu"
- ansible_distribution_release in ['bionic','xenial']
- ansible_distribution_release in ['bionic']

when:
- install_python is defined
Expand Down

0 comments on commit d407a89

Please sign in to comment.