add laptop setup #268

Merged
mg merged 44 commits from laptop_mint into master 2024-12-30 20:06:25 +01:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 0f31d1032c - Show all commits

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