blob: 362af8e880246c44133f004f24232e72d84cf76d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/sh
# Used on metadata.swamid.se and metadata.lab.swamid.se
update()
{
# echo "git pull"
git pull -q || return $?
# 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
docker exec swamid-metadata-sp /var/www/scripts/removeEntity.bash /opt/swamid-metadata/$file
done
rm /tmp/$$.xml /tmp/$$.time
# 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
# update TestResults from release-check -> DB
docker exec swamid-metadata-sp php /var/www/scripts/updateTestResults.php
# Cleanup Pending-queue
docker exec swamid-metadata-sp php /var/www/scripts/cleanupPending.php
}
cd /opt/swamid-metadata || exit 1
update
|