taler-deployment

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

commit 92a9466dc83dc9a730bf9be7bdcb2b713c69987e
parent 27044c97b8d7e452c1a14babf1bb725448682961
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Fri, 19 Apr 2019 19:01:09 +0200

whoami instead of env.

Diffstat:
Mbuildbot/build.sh | 6++----
Mbuildbot/config.sh | 6++----
Mbuildbot/keys.sh | 6++----
Mbuildbot/restart.sh | 6++----
Mbuildbot/sign.sh | 6++----
Mbuildbot/top_reserve.sh | 8+++-----
6 files changed, 13 insertions(+), 25 deletions(-)

diff --git a/buildbot/build.sh b/buildbot/build.sh @@ -1,9 +1,6 @@ #!/bin/bash -source "${HOME}/activate" -ACTIVE_COLOR="$(cat /home/test/active)" - -if test "${TALER_ENV_COLOR}" = "${ACTIVE_COLOR}"; then +if test "$(whoami)" = "$(cat /home/test/active)"; then echo "I'm the active color, no need to compile and switch!" exit 0 fi @@ -17,4 +14,5 @@ echo "The Buildbot is paused, remove ${PAUSE_LOCKFILE} to resume." exit 2 fi +source "${HOME}/activate" taler-deployment-build diff --git a/buildbot/config.sh b/buildbot/config.sh @@ -1,11 +1,9 @@ #!/bin/bash -source "${HOME}/activate" -ACTIVE_COLOR="$(cat /home/test/active)" - -if test "${TALER_ENV_COLOR}" = "${ACTIVE_COLOR}"; then +if test "$(whoami)" = "$(cat /home/test/active)"; then echo "I'm the active color, no need to compile and switch!" exit 0 fi +source "${HOME}/activate" taler-deployment-config-generate diff --git a/buildbot/keys.sh b/buildbot/keys.sh @@ -1,11 +1,9 @@ #!/bin/bash -source "${HOME}/activate" -ACTIVE_COLOR="$(cat /home/test/active)" - -if test "${TALER_ENV_COLOR}" = "${ACTIVE_COLOR}"; then +if test "$(whoami)" = "$(cat /home/test/active)"; then echo "I'm the active color, no need to compile and switch!" exit 0 fi +source "${HOME}/activate" taler-deployment-keyup diff --git a/buildbot/restart.sh b/buildbot/restart.sh @@ -1,11 +1,9 @@ #!/bin/bash -source "${HOME}/activate" -ACTIVE_COLOR="$(cat /home/test/active)" - -if test "${TALER_ENV_COLOR}" = "${ACTIVE_COLOR}"; then +if test "$(whoami)" = "$(cat /home/test/active)"; then echo "I'm the active color, no need to compile and switch!" exit 0 fi +source "${HOME}/activate" taler-deployment-restart diff --git a/buildbot/sign.sh b/buildbot/sign.sh @@ -1,11 +1,9 @@ #!/bin/bash -source "${HOME}/activate" -ACTIVE_COLOR="$(cat /home/test/active)" - -if test "${TALER_ENV_COLOR}" = "${ACTIVE_COLOR}"; then +if test "$(whoami)" = "$(cat /home/test/active)"; then echo "I'm the active color, no need to compile and switch!" exit 0 fi +source "${HOME}/activate" taler-deployment-config-sign diff --git a/buildbot/top_reserve.sh b/buildbot/top_reserve.sh @@ -1,11 +1,9 @@ #!/bin/bash -source "${HOME}/activate" -ACTIVE_COLOR="$(cat /home/test/active)" - -if ! test "${TALER_ENV_COLOR}" = "${ACTIVE_COLOR}"; then - echo "I'm the inactive color (${TALER_ENV_COLOR}), will not top the reserve up!" +if ! test "$(whoami)" = "$(cat /home/test/active)"; then + echo "I'm the inactive color, will not top the reserve up!" exit 0 fi +source "${HOME}/activate" taler-deployment-top-reserve