diff --git a/playbooks/install_morefine.yaml b/playbooks/install_morefine.yaml index cc73680..6c1e784 100644 --- a/playbooks/install_morefine.yaml +++ b/playbooks/install_morefine.yaml @@ -51,4 +51,18 @@ - 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 \ No newline at end of file + deb: https://downloads.realvnc.com/download/file/vnc.files/VNC-Server-7.5.1-Linux-x64.deb + - name: Get repo + become: true + ansible.builtin.shell: >- + curl -sS https://download.spotify.com/debian/pubkey_7A3A762FAFD4A51F.gpg | sudo gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/spotify.gpg + + - name: Get repo + become: true + ansible.builtin.shell: >- + echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list + - name: Install ldap packages + become: true + ansible.builtin.apt: + name: spotify-client + update_cache: yes \ No newline at end of file