UNPKG

@installdoc/ansible-gas-station

Version:

An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤

14 lines (12 loc) 340 B
--- - name: Add youtube-dl apt repository apt_repository: filename: youtubedl repo: "{{ youtube_dl_apt_repository }}" state: present update_cache: true - name: Ensure youtube-dl is installed apt: name: youtube-dl state: present update_cache: "{{ omit if skip_package_cache_update is defined else 'true' }}"