diff options
| author | spmfox <spmfox@foxwd.com> | 2025-09-08 20:50:17 -0400 |
|---|---|---|
| committer | spmfox <spmfox@foxwd.com> | 2025-09-08 20:50:17 -0400 |
| commit | ef5ac13b358d8c8c8615c39ba1e428afb16ff96c (patch) | |
| tree | 1505be30dfaae385b50bddca849e77f7561b05ef /roles/containers/tasks/main.yml | |
| parent | dffc9ae4f09c25fbd33c83bf79cdb5d30250764a (diff) | |
adding support for systemd files
Diffstat (limited to 'roles/containers/tasks/main.yml')
| -rw-r--r-- | roles/containers/tasks/main.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roles/containers/tasks/main.yml b/roles/containers/tasks/main.yml index 02ee577..17d26e5 100644 --- a/roles/containers/tasks/main.yml +++ b/roles/containers/tasks/main.yml @@ -2,16 +2,34 @@ tags: - create +- ansible.builtin.import_tasks: systemd_create.yml + tags: + - create + - ansible.builtin.import_tasks: quadlet_start.yml tags: - start +- ansible.builtin.import_tasks: systemd_start.yml + tags: + - start + - ansible.builtin.import_tasks: quadlet_stop.yml tags: - never - stop +- ansible.builtin.import_tasks: systemd_stop.yml + tags: + - never + - stop + - ansible.builtin.import_tasks: quadlet_remove.yml tags: - never - remove + +- ansible.builtin.import_tasks: systemd_remove.yml + tags: + - never + - remove |
