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 (562648f -> 452d97


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated (562648f -> 452d97e)
Date: Sat, 12 Oct 2019 09:06:06 +0200

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

dold pushed a change to branch master
in repository deployment.

    from 562648f  add to visible
     new 322fa6f  install dependency
     new 452d97e  don't use deprecated environment variable

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 bin/taler-deployment                 | 1 +
 bin/taler-deployment-auditor-sign    | 2 +-
 bin/taler-deployment-config-generate | 8 ++++----
 bin/taler-deployment-hier            | 2 +-
 bin/taler-deployment-keyup           | 4 ++--
 bin/taler-deployment-sign            | 2 +-
 6 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment
index ebe99c0..b06d064 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -196,6 +196,7 @@ def build_bank(r, p):
 
 def build_landing(r, p):
     update_checkout(r, p)
+    subprocess.run(["pip3", "install", "--user", "jsmin"], check=True)
     subprocess.run(["./bootstrap"], check=True)
     pfx = Path.home() / "local"
     default_configure()
diff --git a/bin/taler-deployment-auditor-sign 
b/bin/taler-deployment-auditor-sign
index ffeac26..3058fc5 100755
--- a/bin/taler-deployment-auditor-sign
+++ b/bin/taler-deployment-auditor-sign
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-if test -z $TALER_CONFIG_ENV; then
+if test -z $TALER_ENV_NAME; then
   echo Please run 'source ~/activate' beforehand.
   exit 1
 fi
diff --git a/bin/taler-deployment-config-generate 
b/bin/taler-deployment-config-generate
index 7e9a8ee..73de882 100755
--- a/bin/taler-deployment-config-generate
+++ b/bin/taler-deployment-config-generate
@@ -9,8 +9,8 @@
 
 set -eu
 
-if [[ -z ${TALER_CONFIG_ENV+x} ]]; then
-  echo "TALER_CONFIG_ENV not set"
+if [[ -z ${TALER_ENV_NAME+x} ]]; then
+  echo "TALER_ENV_NAME not set"
   exit 1
 fi
 
@@ -19,7 +19,7 @@ if [[ -z ${TALER_CONFIG_CURRENCY+x} ]]; then
   exit 1
 fi
 
-EXCHANGE_PUB=$(gnunet-ecc -p 
$HOME/deployment/private-keys/${TALER_CONFIG_ENV}-exchange-master.priv)
+EXCHANGE_PUB=$(gnunet-ecc -p 
$HOME/deployment/private-keys/${TALER_ENV_NAME}-exchange-master.priv)
 
 mkdir -p $HOME/.config
 
@@ -27,4 +27,4 @@ $HOME/deployment/config/generate-config \
   --exchange-pub "$EXCHANGE_PUB" \
   --currency "$TALER_CONFIG_CURRENCY" \
   --outdir $HOME/.config \
-  --envname "$TALER_CONFIG_ENV"
+  --envname "$TALER_ENV_NAME"
diff --git a/bin/taler-deployment-hier b/bin/taler-deployment-hier
index beee4db..52c3c25 100755
--- a/bin/taler-deployment-hier
+++ b/bin/taler-deployment-hier
@@ -8,7 +8,7 @@
 
 set -eu
 
-if test -z $TALER_CONFIG_ENV; then
+if test -z $TALER_ENV_NAME; then
   echo Please run 'source ~/activate' first.
   exit 1
 fi
diff --git a/bin/taler-deployment-keyup b/bin/taler-deployment-keyup
index 6cd61ca..627f295 100755
--- a/bin/taler-deployment-keyup
+++ b/bin/taler-deployment-keyup
@@ -5,7 +5,7 @@
 
 set -eu
 
-if test -z $TALER_CONFIG_ENV; then
+if test -z $TALER_ENV_NAME; then
   echo Please run 'source $HOME/activate' first.
   exit 1
 fi
@@ -86,7 +86,7 @@ fi
 # Deploying Exchange's priv.
 if ! test -f $EXCHANGE_PRIV ; then
   mkdir -p $(dirname $EXCHANGE_PRIV)
-  cp $HOME/deployment/private-keys/${TALER_CONFIG_ENV}-exchange-master.priv 
$EXCHANGE_PRIV
+  cp $HOME/deployment/private-keys/${TALER_ENV_NAME}-exchange-master.priv 
$EXCHANGE_PRIV
   chmod 770 $EXCHANGE_PRIV
 fi
 
diff --git a/bin/taler-deployment-sign b/bin/taler-deployment-sign
index c5ea621..011e0d0 100755
--- a/bin/taler-deployment-sign
+++ b/bin/taler-deployment-sign
@@ -4,7 +4,7 @@
 
 set -eu
 
-if test -z $TALER_CONFIG_ENV; then
+if test -z $TALER_ENV_NAME; then
   echo Please run 'source $HOME/activate' first.
   exit 1
 fi

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



reply via email to

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