From 0673b30b2dd3f1ba5c38ef95dfb522cc4920d60f Mon Sep 17 00:00:00 2001 From: Daan Willems Date: Wed, 10 Apr 2024 17:22:55 +0200 Subject: [PATCH] Add exemption to entrypoint_nginx for taxonomies (#41) --- core/files/entrypoint_nginx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/files/entrypoint_nginx.sh b/core/files/entrypoint_nginx.sh index a989db2..bcff31f 100755 --- a/core/files/entrypoint_nginx.sh +++ b/core/files/entrypoint_nginx.sh @@ -148,7 +148,7 @@ EOT update_misp_data_files(){ for DIR in $(ls /var/www/MISP/app/files.dist); do - if [ "$DIR" = "certs" ] || [ "$DIR" = "img" ] ; then + if [ "$DIR" = "certs" ] || [ "$DIR" = "img" ] || [ "$DIR" == "taxonomies" ] ; then echo "... rsync -azh \"/var/www/MISP/app/files.dist/$DIR\" \"/var/www/MISP/app/files/\"" rsync -azh "/var/www/MISP/app/files.dist/$DIR" "/var/www/MISP/app/files/" else