summaryrefslogtreecommitdiff
path: root/bin/taler-deployment-start
blob: 0f2e2916f3e722a9974c13938a932210405d012f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash

base=$HOME

export PATH="$base/deployment":$PATH

# might fail if invoked from another script with ulimit
ulimit -c $((100 * 1024)) &>/dev/null || true

cd $HOME

taler-deployment-arm -s

if [ "${TALER_CONFIG_STANDALONE:-0}" = 1 ]; then
  taler-deployment-arm -i taler-postgres-standalone
fi

taler-deployment-arm -i taler-exchange
taler-deployment-arm -i taler-auditor
taler-deployment-arm -i taler-merchant
taler-deployment-arm -i taler-demobank
taler-deployment-arm -i taler-donations
taler-deployment-arm -i taler-blog
taler-deployment-arm -i taler-survey
taler-deployment-arm -i taler-aggregator
taler-deployment-arm -i taler-exchange-wirewatch
taler-deployment-arm -i taler-backoffice

if [[ "$TALER_ENV_NAME" = test ]]; then
  taler-deployment-arm -i taler-playground
fi