add laptop setup #268
2 changed files with 4 additions and 2 deletions
|
@ -9,7 +9,8 @@ laptop_install_deb_url:
|
|||
|
||||
### mgrote_install_deb_files_from_url
|
||||
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
|
||||
users:
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
---
|
||||
- name: install archived deb files
|
||||
ansible.builtin.unarchive:
|
||||
src: "{{ item }}"
|
||||
src: "{{ item.url }}"
|
||||
dest: /usr/local/bin
|
||||
remote_src: true
|
||||
creates: "{{ item.creates | default(omit) }}"
|
||||
loop: "{{ laptop_install_deb_url_archived }}"
|
||||
when: laptop_install_deb_url_archived is defined
|
||||
...
|
||||
|
|
Loading…
Reference in a new issue