diff --git a/README.md b/README.md index 304d217..1ec3275 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ NOTE: This Ansible code has been developed on [Debian](https://www.debian.org/), * Install [Ansible](https://www.ansible.com/) and git - in Debian (Raspberry Pi OS, Ubuntu, Mint, etc...) ``` -(sudo) apt install ansible git +(sudo) apt install ansible git bzip2 ``` * Install openssh-server and start it if you don't have it installed diff --git a/tasks/03_install_plexamp.yml b/tasks/03_install_plexamp.yml index 20df798..ac9b3e3 100644 --- a/tasks/03_install_plexamp.yml +++ b/tasks/03_install_plexamp.yml @@ -14,8 +14,8 @@ - name: Summarize Plexamp Headless download' ansible.builtin.debug: msg: - - "Latest Plexamp Headless version: {{ plexamp_latest_version }}" - - "Download Plexamp archive: {{ plexamp_download_link }}" + - "Latest Plexamp Headless version: {{ plexamp_latest_version.stdout }}" + - "Download Plexamp archive: {{ plexamp_download_link.stdout }}" #- name: Print return information from the previous task # ansible.builtin.debug: @@ -24,7 +24,7 @@ - name: Download Plexamp Headless, install to plexamp user's home directory ansible.builtin.unarchive: - src: "{{ plexamp_download_link }}" + src: "{{ plexamp_download_link.stdout }}" dest: "/home/{{ plexamp_user }}" owner: "{{ plexamp_user }}" group: "{{ plexamp_group }}"