Add exemption to entrypoint_nginx for taxonomies

pull/41/head
Daan Willems 2024-04-09 07:27:08 +00:00
parent 485feba927
commit d6c03acb88
1 changed files with 1 additions and 1 deletions

View File

@ -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