Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions tasks/03_install_plexamp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}"
Expand Down