add docker_use_dist_repo variable + default

to decide for install source repo
and add to README
This commit is contained in:
2023-10-06 20:46:22 +02:00
parent 8c449aa986
commit d0adf1a301
3 changed files with 17 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
---
docker_use_dist_repo: false

View File

@@ -1,4 +1,4 @@
---
- name: include proper install tasks
ansible.builtin.import_tasks:
file: "{{ docker_type | default('docker') }}.yml"
file: "{{ 'dist' if docker_use_dist_repo else 'docker' }}.yml"