Inverted docker_compose_skipp_file_creation to don't use double negation

This commit is contained in:
2025-09-22 13:40:28 +02:00
parent 734b8764f2
commit 6cf6c74802
5 changed files with 43 additions and 43 deletions

View File

@@ -1,3 +1,3 @@
docker_compose_skipp_file_creation: false # If set to true the file creation will be skipped docker_compose_file_creation_enabled: true # If set to true the file creation will be skipped
docker_pull_git_repository: false # Activates docker repository download and routine docker_pull_git_repository: false # Activates docker repository download and routine
docker_compose_flush_handlers: false # Set to true in the vars/main.yml of the including role to autoflush after docker compose routine docker_compose_flush_handlers: false # Set to true in the vars/main.yml of the including role to autoflush after docker compose routine

View File

@@ -24,7 +24,7 @@
include_tasks: "04_files.yml" include_tasks: "04_files.yml"
- name: "Ensure that {{ docker_compose.directories.instance }} is up" - name: "Ensure that {{ docker_compose.directories.instance }} is up"
include_tasks: "05_ensure_up.yml" include_tasks: "05_ensure_up.yml"
when: not docker_compose_skipp_file_creation | bool when: docker_compose_file_creation_enabled | bool
- name: "flush docker compose for '{{ application_id }}'" - name: "flush docker compose for '{{ application_id }}'"
meta: flush_handlers meta: flush_handlers

View File

@@ -11,7 +11,7 @@ database_password: "{{ applications | get_app_conf(application_
docker_repository_address: "https://github.com/akaunting/docker.git" docker_repository_address: "https://github.com/akaunting/docker.git"
docker_pull_git_repository: true docker_pull_git_repository: true
docker_repository_branch: "master" docker_repository_branch: "master"
docker_compose_skipp_file_creation: false docker_compose_file_creation_enabled: true
# Akaunting # Akaunting
AKAUNTING_URL: "{{ domains | get_url(application_id, WEB_PROTOCOL) }}" AKAUNTING_URL: "{{ domains | get_url(application_id, WEB_PROTOCOL) }}"

View File

@@ -13,7 +13,7 @@ domain: "{{ domains | get_domain(application_id) }}"
http_port: "{{ ports.localhost.http[application_id] }}" http_port: "{{ ports.localhost.http[application_id] }}"
# Docker # Docker
docker_compose_skipp_file_creation: true # Handled in this role docker_compose_file_creation_enabled: false # Handled in this role
docker_repository_address: "{{ applications | get_app_conf(application_id, 'docker.services.bigbluebutton.repository') }}" docker_repository_address: "{{ applications | get_app_conf(application_id, 'docker.services.bigbluebutton.repository') }}"
docker_repository_branch: "{{ applications | get_app_conf(application_id, 'docker.services.bigbluebutton.version') }}" docker_repository_branch: "{{ applications | get_app_conf(application_id, 'docker.services.bigbluebutton.version') }}"
docker_pull_git_repository: true docker_pull_git_repository: true

View File

@@ -11,7 +11,7 @@ database_type: 0 # Database type
# Checkout roles/docker-compose/defaults/main.yml for all configuration options # Checkout roles/docker-compose/defaults/main.yml for all configuration options
docker_compose_flush_handlers: true # When this is set to true an auto-flush after the docker-compose.yml, and env deploy is triggered, otherwise you have todo it manual. docker_compose_flush_handlers: true # When this is set to true an auto-flush after the docker-compose.yml, and env deploy is triggered, otherwise you have todo it manual.
docker_compose_skipp_file_creation: false # Skipp creation of docker-compose.yml file docker_compose_file_creation_enabled: true # Skipp creation of docker-compose.yml file
docker_pull_git_repository: true # This will automaticly pull a repository from the 'docker_repository_address' docker_pull_git_repository: true # This will automaticly pull a repository from the 'docker_repository_address'
docker_repository_address: "" # The address of a repository which should be pulled docker_repository_address: "" # The address of a repository which should be pulled