gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-deployment] branch master updated: fix domain in che


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: fix domain in checks.
Date: Tue, 16 Apr 2019 13:07:34 +0200

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 9eb2da5  fix domain in checks.
9eb2da5 is described below

commit 9eb2da5236166f37d68310cdd7c1e889a992e384
Author: Marcello Stanisci <address@hidden>
AuthorDate: Tue Apr 16 13:07:10 2019 +0200

    fix domain in checks.
---
 buildbot/checks.sh | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/buildbot/checks.sh b/buildbot/checks.sh
index ff89f58..8df470d 100755
--- a/buildbot/checks.sh
+++ b/buildbot/checks.sh
@@ -2,6 +2,7 @@
 
 
 DEPLOYMENT="test"
+DOMAIN="wild.gv.taler.net"
 
 if test "stable" = ${BRANCH}; then
   DEPLOYMENT="demo"
@@ -32,7 +33,7 @@ error_stringify ()
 
 error_fmt="%s (http status code: %s)/(curl exit code: %s - %s)\n"
 
-URL="https://exchange.${DEPLOYMENT}.taler.net/";
+URL="https://exchange.${DEPLOYMENT}.${DOMAIN}/";
 http_status_code=$(curl \
   -H "X-Taler-Deployment-Color: $nonactive" \
   -s "$URL" -o /dev/null \
@@ -45,7 +46,7 @@ if ! test 200 = $http_status_code; then
   exit 1
 fi
 
-URL="http://backend.${DEPLOYMENT}.taler.net/";
+URL="http://backend.${DEPLOYMENT}.${DOMAIN}/";
 http_status_code=$(curl \
   -H "X-Taler-Deployment-Color: $nonactive" \
   -s $URL \
@@ -61,7 +62,7 @@ if ! test 200 = $http_status_code; then
 fi
 
 
-URL="https://shop.${DEPLOYMENT}.taler.net/";
+URL="https://shop.${DEPLOYMENT}.${DOMAIN}/";
 http_status_code=$(curl \
   -H "X-Taler-Deployment-Color: $nonactive" \
   -s $URL -o /dev/null \
@@ -74,7 +75,7 @@ if ! test 200 = $http_status_code; then
   exit 1
 fi
 
-URL="https://survey.${DEPLOYMENT}.taler.net/";
+URL="https://survey.${DEPLOYMENT}.${DOMAIN}/";
 http_status_code=$(curl \
   -H "X-Taler-Deployment-Color: $nonactive" \
   -s $URL -o /dev/null \
@@ -87,7 +88,7 @@ if ! test 200 = $http_status_code; then
   exit 1
 fi
 
-URL="https://donations.${DEPLOYMENT}.taler.net/";
+URL="https://donations.${DEPLOYMENT}.${DOMAIN}/";
 http_status_code=$(curl \
   -H "X-Taler-Deployment-Color: $nonactive" \
   -s $URL -o /dev/null \
@@ -100,7 +101,7 @@ if ! test 200 = $http_status_code; then
   exit 1
 fi
 
-URL="https://bank.${DEPLOYMENT}.taler.net/";
+URL="https://bank.${DEPLOYMENT}.${DOMAIN}/";
 http_status_code=$(curl \
   -H "X-Taler-Deployment-Color: $nonactive" \
   -s $URL -o /dev/null \
@@ -113,7 +114,7 @@ if ! test 302 = $http_status_code; then
   exit 1
 fi
 
-URL="https://${DEPLOYMENT}.taler.net/en/index.html"; 
+URL="https://${DEPLOYMENT}.${DOMAIN}/en/index.html"; 
 http_status_code=$(curl \
   -H "X-Taler-Deployment-Color: $nonactive" \
   -s $URL -o /dev/null \

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]