Bertrand Lanson
f3446af6d6
All checks were successful
test / Linting (push) Successful in 7s
test / Molecule tests (default, debian12) (push) Successful in 1m33s
test / Molecule tests (default, debian11) (push) Successful in 1m36s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m44s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m27s
test / Molecule tests (with_custom_config, debian11) (push) Successful in 1m46s
test / Molecule tests (with_custom_config, debian12) (push) Successful in 1m37s
test / Molecule tests (with_custom_config, ubuntu2004) (push) Successful in 1m45s
test / Molecule tests (with_custom_config, ubuntu2204) (push) Successful in 1m45s
15 lines
380 B
YAML
15 lines
380 B
YAML
---
|
|
# task/prerequisites file for install_docker
|
|
- name: "Create group {{ install_docker_group }}"
|
|
ansible.builtin.group:
|
|
name: "{{ install_docker_group }}"
|
|
state: present
|
|
|
|
- name: "Create directory {{ install_docker_daemon_dir }}"
|
|
ansible.builtin.file:
|
|
path: "{{ install_docker_daemon_dir }}"
|
|
state: directory
|
|
owner: root
|
|
group: root
|
|
mode: '0755'
|