14 lines
314 B
YAML
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'
|