From 12d0f13bf351a78184b4f623f9af5a6cc641df72 Mon Sep 17 00:00:00 2001 From: Brent Eagles Date: Thu, 23 Apr 2020 11:42:19 -0230 Subject: [PATCH] Fix typo in sync script string container name comparison Add missing space. Change-Id: I0fa45ddd77bf7071a2158e1a8e1e6f4d9a13dfd1 --- .../roles/tripleo_systemd_wrapper/templates/service_sync.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripleo_ansible/roles/tripleo_systemd_wrapper/templates/service_sync.j2 b/tripleo_ansible/roles/tripleo_systemd_wrapper/templates/service_sync.j2 index 7024e13ef..857d55cda 100644 --- a/tripleo_ansible/roles/tripleo_systemd_wrapper/templates/service_sync.j2 +++ b/tripleo_ansible/roles/tripleo_systemd_wrapper/templates/service_sync.j2 @@ -53,7 +53,7 @@ for LINE in $(cat ${jobs_file}); do container_list=`$CLI ps --format={% raw %}"{{.Names}}"{% endraw %} --filter="name=$CONTAINER_NAME"` for name in ${container_list}; do - if [ "x$name" = "x$CONTAINER_NAME"]; + if [ "x$name" = "x$CONTAINER_NAME" ]; then start_container=no break