From d0c7dfeaa000887da45c4c4885021797d82aef44 Mon Sep 17 00:00:00 2001 From: Todd Baert Date: Fri, 1 Sep 2023 09:46:45 -0400 Subject: [PATCH] fixup: script comments Signed-off-by: Todd Baert --- scripts/wrapper.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/wrapper.sh b/scripts/wrapper.sh index 42fa4f2..a9f644f 100644 --- a/scripts/wrapper.sh +++ b/scripts/wrapper.sh @@ -1,5 +1,5 @@ #!/bin/sh -# wrapper script to start change-flag.sh and flagd, and forward signals to the child process +# wrapper script to start change-flag.sh and flagd/sync, and forward signals to the child process # handle SIGINTs and SIGTERMs so we can kill the container handle_term() { @@ -13,10 +13,10 @@ handle_int() { trap handle_term SIGTERM trap handle_int SIGINT -# start change script and flagd +# start change script and our server sh ./change-flag.sh & "$@" & -# wait on flagd +# wait on server child=$! wait "$child" \ No newline at end of file