homeserver/roles/mgrote_install_deb_files_from_url/tasks/main.yml
Michael Grote 6ab1c38fcf
All checks were successful
ansible-lint / gitleaks (pull_request) Successful in 3s
ansible-lint / Ansible Lint (pull_request) Successful in 23s
dd
2024-12-29 11:43:08 +01:00

8 lines
175 B
YAML

---
- name: install deb files
become: true
ansible.builtin.apt:
deb: "{{ item }}"
loop: "{{ laptop_install_deb_url }}"
when: laptop_install_deb_url is defined
...