Merge pull request #61 from coaxial/fix-warning

Fix 'using tests as filters' deprecation warning
master
Jeff Geerling 2018-05-15 11:12:19 -05:00 committed by GitHub
commit 99dc588c77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -25,13 +25,13 @@
- name: Ensure curl is present (on older systems without SNI).
package: name=curl state=present
when: add_repository_key|failed
when: add_repository_key is failed
- name: Add Docker apt key (alternative for older systems without SNI).
shell: "curl -sSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -"
args:
warn: no
when: add_repository_key|failed
when: add_repository_key is failed
- name: Add Docker repository.
apt_repository: