This commit is contained in:
Michael Grote 2024-12-29 11:16:48 +01:00
parent fc297313b3
commit f9e70b93a7

View file

@ -4,6 +4,7 @@
ansible.builtin.apt:
deb: "{{ item }}"
loop: "{{ laptop_install_deb_url }}"
when: laptop_install_deb_url is defined
- name: install archived deb files
ansible.builtin.unarchive:
@ -11,4 +12,5 @@
dest: /usr/local/bin
remote_src: yes
loop: "{{ laptop_install_deb_url_archived }}"
when: laptop_install_deb_url_archived is defined
...