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:
parent
9dbe690c6a
commit
2d433d2872
1 changed files with 6 additions and 4 deletions
|
@ -39,7 +39,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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue