toansible: Add lilypond installation

This commit is contained in:
flyingscorpio@clevo 2022-02-22 16:04:18 +01:00
parent 54aed262c4
commit 641d124d5f
3 changed files with 17 additions and 4 deletions

View file

@ -283,10 +283,6 @@ latex:
- dotfiles/latexmkrc
- ~/.latexmkrc
lilypond:
- install:
- lilypond
powershell:
- clone:
url: https://aur.archlinux.org/powershell-bin.git

View file

@ -28,3 +28,5 @@
tags: tor
- role: sudoers
tags: sudoers
- role: lilypond
tags: lilypond

View file

@ -0,0 +1,15 @@
---
- 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'