aboutsummaryrefslogtreecommitdiff
path: root/roles/containers/tasks/main.yml
blob: 07a226ebf6c8df84ae5b63c558c5ee1d390e9f31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
- ansible.builtin.import_tasks: quadlet_create.yml
  tags:
    - create

- ansible.builtin.import_tasks: systemd_create.yml
  when: containers_systemd is defined
  tags:
    - create

- ansible.builtin.import_tasks: quadlet_start.yml
  tags:
    - start

- ansible.builtin.import_tasks: systemd_start.yml
  when: containers_systemd is defined
  tags:
    - start

- ansible.builtin.import_tasks: quadlet_stop.yml
  tags:
    - never
    - stop

- ansible.builtin.import_tasks: systemd_stop.yml
  when: containers_systemd is defined
  tags:
    - never
    - stop

- ansible.builtin.import_tasks: quadlet_remove.yml
  tags:
    - never
    - remove

- ansible.builtin.import_tasks: systemd_remove.yml
  when: containers_systemd is defined
  tags:
    - never
    - remove