setup-cockpit/roles/lilypond/tasks/main.yml

14 lines
314 B
YAML

---
- name: Install lilypond (Archlinux)
become: true
community.general.pacman:
name:
- lilypond
when: ansible_facts['distribution'] == 'Archlinux'
- name: Install lilypond (Debian)
become: true
ansible.builtin.apt:
name:
- lilypond
when: ansible_facts['distribution'] == 'Debian'