ff
Some checks failed
ansible-lint / gitleaks (pull_request) Successful in 4s
ansible-lint / Ansible Lint (pull_request) Failing after 29s

This commit is contained in:
Michael Grote 2024-12-30 18:29:56 +01:00
parent 3f2cd7ae41
commit 0f31d1032c
2 changed files with 4 additions and 2 deletions

View file

@ -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:

View file

@ -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
...