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
|
- dotfiles/latexmkrc
|
||||||
- ~/.latexmkrc
|
- ~/.latexmkrc
|
||||||
|
|
||||||
lilypond:
|
|
||||||
- install:
|
|
||||||
- lilypond
|
|
||||||
|
|
||||||
powershell:
|
powershell:
|
||||||
- clone:
|
- clone:
|
||||||
url: https://aur.archlinux.org/powershell-bin.git
|
url: https://aur.archlinux.org/powershell-bin.git
|
||||||
|
|
|
@ -28,3 +28,5 @@
|
||||||
tags: tor
|
tags: tor
|
||||||
- role: sudoers
|
- role: sudoers
|
||||||
tags: 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