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

Using Ansible get_url module to fix warnings

Using Ansible 'get_url' modules instead of 'wget' to download usbmout package. Fixes warnings in bug #327
This commit is contained in:
Arky 2017-10-01 17:03:24 +07:00
parent 9dbe690c6a
commit 2d433d2872

View file

@ -39,7 +39,9 @@
when: is_redhat when: is_redhat
- name: Download usbmount -- not in debian-9 - 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 when: is_debian_9
- name: Install usbmount for debian-9 - name: Install usbmount for debian-9