commit 33e123d03c3d89a06a8705b983b1cd9b862f2b80
parent 6527e5a577184761f7bdca137ef7a58505dd2fac
Author: Vetle Haflan <vetle@haflan.dev>
Date: Fri, 10 Sep 2021 12:20:54 +0200
fix: do not delete temp files referred to in details message
Diffstat:
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/internal/http/setup.sh b/internal/http/setup.sh
@@ -170,6 +170,7 @@ if [ $RESULT -ne 0 -o -s "$ERR" ]; then
details="Details written to $FULLDETAILS"
else
details=$(json_escape "$(cat ${FULLDETAILS})")
+ rm -rf "$TMP"
fi
status=error
title="'$(basename $2)' failed"
@@ -178,6 +179,7 @@ else
details="Details written to $OUT"
else
details=$(json_escape "$(cat ${OUT})")
+ rm -rf "$TMP"
fi
status=ok
title="'$(basename $2)' finished successfully"
@@ -186,9 +188,7 @@ fi
sermonicli report $SERVICEID $status "$title" "$details"
-rm -rf "$TMP"
-
EOF
chmod +x $INSTALL_DIR/sermonicli
-chmod +x $INSTALL_DIR/sermonic-
\ No newline at end of file
+chmod +x $INSTALL_DIR/sermonic