summaryrefslogtreecommitdiff
path: root/bootstrap-test
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap-test')
-rwxr-xr-xbootstrap-test36
1 files changed, 0 insertions, 36 deletions
diff --git a/bootstrap-test b/bootstrap-test
deleted file mode 100755
index 367559a..0000000
--- a/bootstrap-test
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-set -eu
-
-base=$HOME
-
-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 PATH="$base/local/bin:$base/deployment/bin:\$PATH"
-export TALER_EXCHANGEDB_POSTGRES_CONFIG="postgres:///talercheck-\$USER"
-export TALER_MERCHANTDB_POSTGRES_CONFIG="postgres:///talercheck-\$USER"
-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"
-
-ln -sf "/home/test/shared-data" "$base"