taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit fb81d8c4b6fa317c912c01ccf1e6119ee1704f73
parent b6572bd52cb2f8c5f7f0ea4b6705aa5f3fabcc43
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Fri, 10 Mar 2017 13:23:20 +0100

Voiding exchange and merchant sanity checks (waiting for
unix domain sockets based ones).

Diffstat:
Mtaler-build/switch_check_exchange.sh | 9+--------
Mtaler-build/switch_check_merchant.sh | 14+-------------
2 files changed, 2 insertions(+), 21 deletions(-)

diff --git a/taler-build/switch_check_exchange.sh b/taler-build/switch_check_exchange.sh @@ -1,12 +1,5 @@ #!/bin/bash -status_code1=$(curl -s -o /dev/null -w "%{http_code}" https://exchange.test.taler.net/) -status_code2=$(curl -s -o /dev/null -w "%{http_code}" https://exchange.test.taler.net/keys) +# Keeping this file for future (unix socket based) checking tecnique. -if test \ - $status_code1 = 502 -o \ - $status_code2 = 502; then - echo Either \"/\" or \"/keys\" gave 502. - exit 1 -fi exit 0 diff --git a/taler-build/switch_check_merchant.sh b/taler-build/switch_check_merchant.sh @@ -1,17 +1,5 @@ #!/bin/bash -status_code1=$(curl -s -o /dev/null -w "%{http_code}" https://shop.test.taler.net/backend) -status_code2=$(curl -s -o /dev/null -w "%{http_code}" https://shop.test.taler.net/backend/proposal) -status_code3=$(curl -s -o /dev/null -w "%{http_code}" https://donations.test.taler.net/backend) -status_code4=$(curl -s -o /dev/null -w "%{http_code}" https://donations.test.taler.net/backend/proposal) - -if test \ - $status_code1 = 502 -o \ - $status_code2 = 502 -o \ - $status_code3 = 502 -o \ - $status_code4 = 502; then - echo Either \"/\" or \"/proposal\" gave 502. - exit 1 -fi +# Keeping this file for future (unix socket based) checking tecnique. exit 0