22 lines
665 B
YAML
22 lines
665 B
YAML
|
---
|
||
|
- name: Check if youtube-dl is already installed
|
||
|
stat:
|
||
|
path: "{{ youtubedl_executable_path }}"
|
||
|
register: youtubedl_bin
|
||
|
|
||
|
- name: Download from source move to executables folder and set permissions
|
||
|
get_url:
|
||
|
url: http://yt-dl.org/latest/youtube-dl
|
||
|
dest: "{{ youtubedl_executable_path }}"
|
||
|
mode: 0755
|
||
|
force: yes
|
||
|
when: not youtubedl_bin.stat.exists
|
||
|
|
||
|
- name: Update youtube-dl
|
||
|
command: youtube-dl -U
|
||
|
register: youtubedl_update_out
|
||
|
when: youtubedl_bin.stat.exists and youtubedl_update
|
||
|
changed_when: "'Updated youtube-dl.' in youtubedl_update_out.stdout"
|
||
|
failed_when: "'ERROR:' in youtubedl_update_out.stdout"
|
||
|
ignore_errors: true
|