Issue #7: Ensure curl is present on older systems without SNI.

master
Jeff Geerling 2017-05-30 17:11:58 -05:00
parent 1ba82d6510
commit 6e9b3b5c9e
1 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,10 @@
register: add_repository_key
ignore_errors: true
- name: Ensure curl is present (on older systems without SNI).
package: name=curl state=present
when: add_repository_key|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: