ansible-role-samourai-dojo/tasks/systemd.yml

15 lines
426 B
YAML
Raw Permalink Normal View History

---
2023-08-20 06:26:13 +00:00
- name: Generate systemd unit file for the container(s)
containers.podman.podman_generate_systemd:
name: dojo
dest: ~/.config/systemd/user/
restart_policy: on-failure
2023-08-20 06:26:13 +00:00
restart_sec: 10
2023-08-20 06:26:13 +00:00
- name: Start the container(s) with systemd, so systemd will know the state of the container(s) moving forward.
ansible.builtin.systemd:
name: container-dojo
scope: user
state: started
2023-08-20 06:26:13 +00:00
failed_when: false