Skip to content

Commit

Permalink
Add exemption to entrypoint_nginx for taxonomies (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanWillems authored Apr 10, 2024
1 parent 485feba commit 0673b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/files/entrypoint_nginx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0673b30

Please sign in to comment.