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

View file

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