From 76cb33948f7210e4230d625ff63642a01e1f9d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Capil=C3=A9?= Date: Mon, 2 Dec 2024 11:01:14 -0300 Subject: [PATCH] adding echos describing the actions taken (and version found) --- core/files/entrypoint_nginx.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/files/entrypoint_nginx.sh b/core/files/entrypoint_nginx.sh index 5c2659a..489541d 100755 --- a/core/files/entrypoint_nginx.sh +++ b/core/files/entrypoint_nginx.sh @@ -143,8 +143,10 @@ update_misp_data_files(){ MISP_APP_FILES_PATH=/var/www/MISP/app/files if [ -f ${MISP_APP_FILES_PATH}/VERSION ]; then FILES_VERSION=$(cat ${MISP_APP_FILES_PATH}/VERSION) + echo "... found local files/VERSION:" $FILES_VERSION fi if [ $FILES_VERSION = ${CORE_COMMIT:-${CORE_TAG}} ]; then + echo "... local files/ match distribution version, skipping file sync" return 0; fi for DIR in $(ls /var/www/MISP/app/files.dist); do