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

14 lines
280 B
YAML

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