summaryrefslogtreecommitdiff
path: root/bootstrap-demo
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap-demo')
-rwxr-xr-xbootstrap-demo38
1 files changed, 0 insertions, 38 deletions
diff --git a/bootstrap-demo b/bootstrap-demo
deleted file mode 100755
index 07522bc..0000000
--- a/bootstrap-demo
+++ /dev/null
@@ -1,38 +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
-
-for component in bank merchant landing exchange merchant-frontends; do
- git -C $base/$component checkout stable
-done
-
-cat >$base/activate <<EOL
-#!/bin/bash
-export PATH="$base/local/bin:$base/deployment/bin:\$PATH"
-EOL
-
-mkdir -p $base/.config
-ln -sft $base/.config $base/deployment/config/demo.taler.net/taler.conf
-ln -sft $base/.config $base/deployment/config/demo.taler.net/taler
-
-ln -sf "/home/demo/shared-data" "$base"