From 666f5bd9f309b4e9434e15e252c9062ce436697b Mon Sep 17 00:00:00 2001 From: jaydee Date: Wed, 2 Aug 2023 07:26:40 +0200 Subject: [PATCH] upt playbook --- playbooks/install_morefine.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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