summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-and-validate.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/update-and-validate.sh b/scripts/update-and-validate.sh
index 99ba8208..532de715 100755
--- a/scripts/update-and-validate.sh
+++ b/scripts/update-and-validate.sh
@@ -6,8 +6,7 @@ update()
# echo "git pull"
git pull -q || return $?
- /var/www/scripts/updateWebb.bash
-
+ # Remove old entitys from DB
ls swamid-2.0/*.xml | sed 's@swamid-2.0/\(.*\).xml@.time/\1.validate@' > /tmp/$$.xml
ls .time/*.validate > /tmp/$$.time
comm -13 /tmp/$$.xml /tmp/$$.time | while read file; do
@@ -15,12 +14,16 @@ update()
done
rm /tmp/$$.xml /tmp/$$.time
- # remove some to get DB refreshed
+ # remove some flag-files to get DB refreshed
if [ $(find .time/ -ctime +15 | wc -l) -ne 0 ]; then
rm `find .time/ -ctime +15 | tail -10`
fi
+ # Update/Import "new" xml-files
make -f Makefile.validate -s
+
+ # check URL:s
+ docker exec swamid-metadata-sp php /var/www/scripts/checkURLs.php
}
cd /opt/swamid-metadata || exit 1