From ea03f54799b133631d068cf0915ce29fcb126705 Mon Sep 17 00:00:00 2001 From: Marcos Marado Date: Sun, 6 Jun 2021 15:39:25 +0100 Subject: [PATCH] economia: test for SSL failures too --- scripts/02-economia.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/02-economia.sh b/scripts/02-economia.sh index 1a77608..5f641bc 100755 --- a/scripts/02-economia.sh +++ b/scripts/02-economia.sh @@ -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!)";