Skip to content

Commit

Permalink
Ubuntu 20.04 support
Browse files Browse the repository at this point in the history
  • Loading branch information
chirkin committed Feb 11, 2021
1 parent d203044 commit 2ad47b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
- name: Check Ubuntu version
fail:
msg: '{{ ansible_distribution_version }} is not an acceptable version of Ubuntu for this role'
when: not ansible_distribution_version is version_compare(18.04, '=')
when:
- not ansible_distribution_version is version_compare(18.04, '=')
- not ansible_distribution_version is version_compare(20.04, '=')

- name: Ensure depdencies are installed
apt:
Expand Down

0 comments on commit 2ad47b1

Please sign in to comment.