ff
This commit is contained in:
parent
3f2cd7ae41
commit
0f31d1032c
2 changed files with 4 additions and 2 deletions
|
@ -9,7 +9,8 @@ laptop_install_deb_url:
|
||||||
|
|
||||||
### mgrote_install_deb_files_from_url
|
### mgrote_install_deb_files_from_url
|
||||||
laptop_install_deb_url_archived:
|
laptop_install_deb_url_archived:
|
||||||
- https://download.mikrotik.com/routeros/winbox/4.0beta14/WinBox_Linux.zip
|
- url: https://download.mikrotik.com/routeros/winbox/4.0beta14/WinBox_Linux.zip
|
||||||
|
creates: /usr/local/bin/WinBox
|
||||||
|
|
||||||
### mgrote_user
|
### mgrote_user
|
||||||
users:
|
users:
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
---
|
---
|
||||||
- name: install archived deb files
|
- name: install archived deb files
|
||||||
ansible.builtin.unarchive:
|
ansible.builtin.unarchive:
|
||||||
src: "{{ item }}"
|
src: "{{ item.url }}"
|
||||||
dest: /usr/local/bin
|
dest: /usr/local/bin
|
||||||
remote_src: true
|
remote_src: true
|
||||||
|
creates: "{{ item.creates | default(omit) }}"
|
||||||
loop: "{{ laptop_install_deb_url_archived }}"
|
loop: "{{ laptop_install_deb_url_archived }}"
|
||||||
when: laptop_install_deb_url_archived is defined
|
when: laptop_install_deb_url_archived is defined
|
||||||
...
|
...
|
||||||
|
|
Loading…
Reference in a new issue