1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #353 from arky/bug-327

Using Ansible get_url module to fix warnings
This commit is contained in:
A Holt 2017-11-09 13:39:34 -05:00 committed by GitHub
commit 6e786c5a66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,9 @@
when: is_redhat
- name: Download usbmount -- not in debian-9
command: wget {{ iiab_download_url }}/usbmount_0.0.14.1_all.deb -P {{ downloads_dir }}
get_url:
url: "{{ iiab_download_url }}/usbmount_0.0.14.1_all.deb"
dest: "{{ downloads_dir }}"
when: is_debian_9
- name: Install usbmount for debian-9