toansible: Add lilypond installation
This commit is contained in:
parent
54aed262c4
commit
641d124d5f
3 changed files with 17 additions and 4 deletions
|
@ -283,10 +283,6 @@ latex:
|
|||
- dotfiles/latexmkrc
|
||||
- ~/.latexmkrc
|
||||
|
||||
lilypond:
|
||||
- install:
|
||||
- lilypond
|
||||
|
||||
powershell:
|
||||
- clone:
|
||||
url: https://aur.archlinux.org/powershell-bin.git
|
||||
|
|
|
@ -28,3 +28,5 @@
|
|||
tags: tor
|
||||
- role: sudoers
|
||||
tags: sudoers
|
||||
- role: lilypond
|
||||
tags: lilypond
|
||||
|
|
15
roles/lilypond/tasks/main.yml
Normal file
15
roles/lilypond/tasks/main.yml
Normal 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'
|
Loading…
Add table
Reference in a new issue