mirror of
https://github.com/marado/RNID.git
synced 2024-12-30 15:46:05 +00:00
economia: test for SSL failures too
This commit is contained in:
parent
6c12f1306f
commit
ea03f54799
@ -1,6 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ ! "$(curl -s -I https://www.dgae.gov.pt/gestao-de-ficheiros-externos-dgae-ano-2015/1_formulario-registo_mf_nao_harmonizadas-doc.aspx|grep filename|cut -d= -f2| tr -d '\r')" == "i010066.doc" ]; then
|
||||
fail=0;
|
||||
if [ "$(curl https://www.dgae.gov.pt -o /dev/null || echo $?)" -eq "60" ]; then
|
||||
echo "economia: problema com o certificado SSL";
|
||||
fail=1;
|
||||
elif [ "$(curl -s -I https://www.dgae.gov.pt/gestao-de-ficheiros-externos-dgae-ano-2015/1_formulario-registo_mf_nao_harmonizadas-doc.aspx|grep filename|cut -d= -f2| tr -d '\r')" == "i010066.doc" ]; then
|
||||
echo "economia: ficheiro em formato proprietário";
|
||||
fail=1;
|
||||
fi
|
||||
|
||||
if [ ! "$fail" ]; then
|
||||
echo "economia: incumprimento pode já não existir";
|
||||
else
|
||||
echo "economia: Incumprimento mantém-se, a actualizar o README (faça um git diff, valide, e commit!)";
|
||||
|
Loading…
Reference in New Issue
Block a user