php4dvd: Initial version of role

This commit is contained in:
Timo Makinen 2023-08-20 14:34:11 +00:00
parent 946c7d0772
commit f664e0271b
5 changed files with 101 additions and 0 deletions

View file

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