add laptop setup #268
2 changed files with 11 additions and 1 deletions
|
@ -5,6 +5,8 @@
|
|||
laptop_install_deb_url:
|
||||
- https://github.com/pulsar-edit/pulsar/releases/download/v1.123.0/Linux.pulsar_1.123.0_amd64.deb
|
||||
- https://download.xnview.com/XnViewMP-linux-x64.deb
|
||||
laptop_install_deb_url_archived:
|
||||
- https://download.mikrotik.com/routeros/winbox/4.0beta14/WinBox_Linux.zip
|
||||
|
||||
### mgrote_user_setup
|
||||
dotfiles:
|
||||
|
|
|
@ -2,5 +2,13 @@
|
|||
- name: install deb files
|
||||
become: true
|
||||
ansible.builtin.apt:
|
||||
deb: "{{ laptop_install_deb_url }}"
|
||||
deb: "{{ item }}"
|
||||
loop: "{{ laptop_install_deb_url }}"
|
||||
|
||||
- name: install archived deb files
|
||||
ansible.builtin.unarchive:
|
||||
src: "{{ item }}"
|
||||
dest: /usr/local/bin
|
||||
remote_src: yes
|
||||
loop: "{{ laptop_install_deb_url_archived }}"
|
||||
...
|
||||
|
|
Loading…
Reference in a new issue