summaryrefslogtreecommitdiff
path: root/bootstrap-test
blob: 035b479e67c993a86a42412d5c57beeebc3cf876 (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
32
33
34
35
#!/bin/bash

set -eu

base=${TALER_DEPLOYMENT_BASE:?not set}

mkdir -p $base

cd $base

if ! test -d $base/gnunet; then
  svn checkout https://gnunet.org/svn/gnunet 
fi

if ! test -d $base/libmicrohttpd; then
  svn checkout https://gnunet.org/svn/libmicrohttpd 
fi

for component in bank merchant gnurl landing exchange merchant-frontends deployment; do
  if ! test -d $base/$component; then
    git clone /var/git/$component.git
  fi
done

cat >$base/activate <<EOL
#!/bin/bash
export TALER_DEPLOYMENT_BASE=$base
export TALER_PREFIX=$base/local
export PATH="$base/local/bin:$base/deployment/bin:\$PATH"
EOL

mkdir -p $base/config
ln -sft "$base/config" "$base/deployment/config/test.taler.net/taler.conf"
ln -sft "$base/config" "$base/deployment/config/test.taler.net/taler"