- hosts: morefine name: Install morefine become: yes tasks: - name: Install ldap packages become: true ansible.builtin.apt: name: - curl - yakuake - software-properties-common - apt-transport-https - wget - gpg - autokey-gtk - git - barrier - krusader - wine - name: Get repo become: true ansible.builtin.shell: >- wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg - name: Get repo become: true ansible.builtin.shell: >- install -D -o root -g root -m 644 packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg - name: Get repo become: true ansible.builtin.shell: >- echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list - name: Install code become: true ansible.builtin.apt: name: - code - name: Install viber become: true ansible.builtin.apt: deb: https://download.cdn.viber.com/cdn/desktop/Linux/viber.deb - name: Install VNC Viewer become: true ansible.builtin.apt: deb: https://downloads.realvnc.com/download/file/viewer.files/VNC-Viewer-7.5.1-Linux-x64.deb - name: Install VNC Server become: true ansible.builtin.apt: deb: https://downloads.realvnc.com/download/file/vnc.files/VNC-Server-7.5.1-Linux-x64.deb