summaryrefslogtreecommitdiff
path: root/demo.sh
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-11-01 11:41:20 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-11-01 11:41:40 +0100
commit843ea4392e3642a40bd733ea535350db615aabd7 (patch)
tree0875ea3dd3d42077530e304a8402787c0de1b65a /demo.sh
parentaa98a4c549025429b3451ff50f598940cefac1a2 (diff)
downloaddeployment-843ea4392e3642a40bd733ea535350db615aabd7.tar.gz
deployment-843ea4392e3642a40bd733ea535350db615aabd7.tar.bz2
deployment-843ea4392e3642a40bd733ea535350db615aabd7.zip
no more taler-build
Diffstat (limited to 'demo.sh')
-rwxr-xr-xdemo.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/demo.sh b/demo.sh
deleted file mode 100755
index 3ce92e3..0000000
--- a/demo.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-# Every "blue/green" setup relies on a common user that keeps
-# all the shared data (keys, for example). In our setup, test-*
-# and demo-* rely on the users 'test' and 'demo'. This script
-# automates the configuration of the 'demo' user.
-
-if ! test "demo" = $(whoami); then
- echo This script can only be run by the 'demo' user, exiting..
- exit 1
-fi
-
-echo Creating the 'shared-data' directory.
-mkdir $HOME/shared-data