summaryrefslogtreecommitdiff
path: root/bin/taler-deployment
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-02-23 17:57:15 +0100
committerChristian Grothoff <christian@grothoff.org>2020-02-23 17:57:15 +0100
commit87587c272a7062009e7ff41da2ead97f974e5691 (patch)
treec6ab92f35f71daf1c35159fd4007ff1a33ab7210 /bin/taler-deployment
parent86f2900af629e336db023f767672607046039302 (diff)
downloaddeployment-87587c272a7062009e7ff41da2ead97f974e5691.tar.gz
deployment-87587c272a7062009e7ff41da2ead97f974e5691.tar.bz2
deployment-87587c272a7062009e7ff41da2ead97f974e5691.zip
distinguish between two auditor setups, as currency is different
Diffstat (limited to 'bin/taler-deployment')
-rwxr-xr-xbin/taler-deployment9
1 files changed, 6 insertions, 3 deletions
diff --git a/bin/taler-deployment b/bin/taler-deployment
index c7cf17b..66cd680 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -76,6 +76,8 @@ currmap = {
"int": "INTKUDOS",
"euro": "EUR",
"chf": "CHF",
+ "auditor-reporter-test": "TESTKUDOS"
+ "auditor-reporter-demo": "KUDOS"
}
@@ -332,7 +334,7 @@ def get_repos(envname):
Repo("landing", "git://git.taler.net/landing", [], build_landing),
Repo("donations", "git://git.taler.net/donations", [], build_donations),
]
- if envname in ("demo", "int", "test", "auditor-reporter"):
+ if envname in ("demo", "int", "test", "auditor-reporter-test", "auditor-reporter-demo"):
return [
Repo(
"libmicrohttpd",
@@ -434,7 +436,8 @@ allowed_envs = (
"test",
"int",
"demo",
- "auditor-reporter",
+ "auditor-reporter-test",
+ "auditor-reporter-demo",
"docs-builder",
"euro",
"chf",
@@ -563,7 +566,7 @@ def bootstrap() -> None:
if envname == "test":
create_bb_worker("buildbot-worker-taler.service", "bb-worker", "test-worker", "test-pass")
- elif envname == "auditor-reporter":
+ elif envname in ("auditor-reporter-test", "auditor-reporter-demo"):
create_bb_worker("buildbot-worker-auditor.service", "auditor-worker", "auditor-pass")
elif envname == "demo-checker":
create_bb_worker("buildbot-worker-taler-healthcheck.service", "bb-worker", "demo-worker", "demo-pass")