mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-01-11 02:37:26 +01:00
Kevin Veen-Birkenbach
2c76f99dd1
git-subtree-dir: client-playbook git-subtree-mainline:e763d13570
git-subtree-split:13f29ce5f7
11 lines
247 B
YAML
11 lines
247 B
YAML
- name: install hunspell
|
|
community.general.pacman:
|
|
name: hunspell
|
|
state: present
|
|
|
|
- name: install hunspell language packages
|
|
community.general.pacman:
|
|
name: "hunspell-{{ item }}"
|
|
state: present
|
|
loop: "{{hunspell_languages}}"
|