14 lines
262 B
YAML
14 lines
262 B
YAML
---
|
|
- name: Install lilypond (Archlinux)
|
|
become: true
|
|
pacman:
|
|
name:
|
|
- lilypond
|
|
when: ansible_distribution == 'Archlinux'
|
|
|
|
- name: Install lilypond (Debian)
|
|
become: true
|
|
apt:
|
|
name:
|
|
- lilypond
|
|
when: ansible_distribution == 'Debian'
|