mirror of
https://github.com/pigmonkey/spark.git
synced 2026-01-23 10:25:39 +00:00
consolidate spelling dictionaries
Previously hunspell was installed as a firefox dep, and aspell was installed for weechat.
This commit is contained in:
parent
c37d718028
commit
1ecb9019c1
3 changed files with 17 additions and 3 deletions
|
|
@ -25,6 +25,7 @@
|
|||
- { role: filesystems, tags: ['filesystems'] }
|
||||
- { role: archive, tags: ['archive'] }
|
||||
- { role: udisks, tags: ['udisks'] }
|
||||
- { role: spell, tags: ['spell'] }
|
||||
- { role: browsers, tags: ['browsers'] }
|
||||
- { role: yubikey, tags: ['yubikey'] }
|
||||
- { role: media, tags: ['media'] }
|
||||
|
|
|
|||
16
roles/spell/tasks/main.yml
Normal file
16
roles/spell/tasks/main.yml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
- name: Install hunspell
|
||||
pacman: name={{ item }} state=present
|
||||
with_items:
|
||||
- hunspell
|
||||
- hunspell-en
|
||||
tags:
|
||||
- hunspell
|
||||
|
||||
- name: Install aspell
|
||||
pacman: name={{ item }} state=present
|
||||
with_items:
|
||||
- aspell
|
||||
- aspell-en
|
||||
tags:
|
||||
- aspell
|
||||
|
|
@ -1,7 +1,4 @@
|
|||
---
|
||||
- name: Install aspell English dictionary
|
||||
pacman: name=aspell-en state=present
|
||||
|
||||
- name: Install weechat
|
||||
pacman: name=weechat state=present
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue