7
0
mirror of https://github.com/marado/RNID.git synced 2024-09-19 16:35:24 +00:00
rnid/scripts/49-imt.sh
Hugo Peixoto 498bb4086d Remoção de verificações de acessibilidade
O observatório português de acessibilidade web já faz esta
monitorização. Para evitar duplicar esforços, vamos deixar
de registar
estes incumprimentos.
2021-10-31 17:52:44 +00:00

28 lines
890 B
Bash
Executable File

#!/bin/bash
fail=0;
# Testing HTTPS
if [ "$(curl https://www.imt-ip.pt/sites/IMTT/Portugues/Formularios/Documents/Mod9IMT.pdf -o /dev/null; echo $?)" -eq "35" ]; then
echo "imt: problema com o certificado SSL";
fail=1;
fi
# Testing HTTPS
if [ "$(curl https://www.imt-ip.pt/sites/IMTT/Portugues/Formularios/Documents/Mod9IMT.pdf -o /dev/null; echo $?)" -eq "60" ]; then
echo "imt: problema com o certificado SSL";
fail=2;
fi
if [ "$fail" = 0 ]; then
echo "imt: incumprimento pode já não existir";
else
echo "imt: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";
while IFS='' read -r line || [[ -n "$line" ]]; do
test $(echo "$line"|grep -v imt|wc -l) -eq "1" \
&& echo "$line" \
|| (h=$(echo "$line"|cut -d\| -f1-4); t=$(echo "$line"|cut -d\| -f6-); echo "$h| $(date +%Y/%m/%d) |$t");
done < README.md > new
mv new README.md
fi