From 06c2e30867953866eab7f69b066810f07d6a82f4 Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Sun, 10 Dec 2023 18:14:18 +0200 Subject: [PATCH] Remove trailing whitespace in nextcloud_container_image_final It doesn't seem like this has been causing any (major) issues, but it's better to have it be correct anyway. --- defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 6d0a35b..a3b2f63 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -140,7 +140,7 @@ nextcloud_container_image_registry_prefix: docker.io/ nextcloud_container_image_customized: "localhost/nextcloud:{{ nextcloud_container_image_tag }}-customized" # nextcloud_container_image_final holds the name of the Nextcloud image to run depending on whether or not customizations are enabled. -nextcloud_container_image_final: "{{ nextcloud_container_image_customized if nextcloud_container_image_customizations_enabled else nextcloud_container_image }} " +nextcloud_container_image_final: "{{ nextcloud_container_image_customized if nextcloud_container_image_customizations_enabled else nextcloud_container_image }}" # A list of extra arguments to pass to the container nextcloud_container_extra_arguments: []