google_spell_pspell: Initial version of role

This commit is contained in:
Timo Makinen 2024-04-13 20:20:58 +00:00
parent f08c478bf6
commit 80b7a7c97f
5 changed files with 105 additions and 11 deletions

View file

@ -0,0 +1,18 @@
---
- name: Rebuild google-spell-pspell-container
ansible.builtin.command:
argv:
- podman
- build
- -t
- google-spell-pspell
- /usr/local/src/docker-google-spell-pspell
become: true
become_user: pspell
notify: Restart google-spell-pspell-container
- name: Restart google-spell-pspell-container
ansible.builtin.service:
name: google-spell-pspell-container
daemon_reload: true
state: restarted