summaryrefslogtreecommitdiff
path: root/bootstrap-demo
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-05-19 18:54:17 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-05-19 18:54:17 +0200
commit113b586c34f256504fa9ffa829b779f912e210db (patch)
tree069635932988f8704cfb43f235058d1be1c5e920 /bootstrap-demo
parent9c110443e261c1ec7c467b30dd62f6adde9a0ea1 (diff)
downloaddeployment-113b586c34f256504fa9ffa829b779f912e210db.tar.gz
deployment-113b586c34f256504fa9ffa829b779f912e210db.tar.bz2
deployment-113b586c34f256504fa9ffa829b779f912e210db.zip
fix script / remove obsolete scripts
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"