ipsilon: Initial version of role

This commit is contained in:
Timo Makinen 2024-12-07 11:44:30 +00:00
parent 0be436e8b0
commit fb3608fa6e
5 changed files with 128 additions and 0 deletions

View file

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