machine_setup/ansible/roles/media/tasks/freebsd.yaml

22 lines
425 B
YAML
Raw Normal View History

- name: Install packages
package:
name:
# Have to use yt-dlp instead of youtube_dl because of mpv
# - youtube_dl
- yt-dlp
2024-08-15 01:25:49 +00:00
state: present
- name: Install packages
when: install_graphics
package:
name:
2024-07-22 01:48:48 +00:00
- mkvtoolnix # for mkvmerge
state: present
2024-08-15 01:25:49 +00:00
- name: Install packages
when: not install_graphics
package:
name:
- mkvtoolnix-nogui # for mkvmerge
state: present