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

23 lines
457 B
YAML
Raw Normal View History

2024-07-06 22:05:55 +00:00
- name: Build aur packages
register: buildaur
become_user: "{{ build_user.name }}"
command: "aurutils-sync --no-view {{ item }}"
args:
creates: "/var/cache/pacman/custom/{{ item }}-*.pkg.tar.*"
loop:
- go-chromecast-git
- name: Update cache
when: buildaur.changed
pacman:
name: []
state: present
update_cache: true
- name: Install packages
package:
name:
- yt-dlp
2024-07-06 22:05:55 +00:00
- go-chromecast-git
state: present