Fix broken tests on Ubuntu.

This commit is contained in:
Jeff Geerling 2020-02-20 19:30:04 -06:00
parent 5ae222208d
commit 5d5980a210

View File

@ -22,6 +22,12 @@
changed_when: false
# Ubuntu-specific tasks.
- name: Ensure dirmngr is installed (gnupg dependency).
apt:
name: dirmngr
state: present
when: ansible_distribution == 'Ubuntu'
- name: Add repository for PHP 7.
apt_repository: repo='ppa:ondrej/php'
when: ansible_distribution == 'Ubuntu'