summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-04-14 12:08:53 +0200
committerFlorian Dold <florian@dold.me>2021-04-14 12:08:53 +0200
commit28b0ccfca5d0cf2de31548d8051207583a20c3b4 (patch)
tree2abd64e5c139f5963b1b1beecdb4ccf7d9d0c7cc
parenta6af8c8338f3e7aaecf2736a3cf4fc278493486e (diff)
downloaddeployment-28b0ccfca5d0cf2de31548d8051207583a20c3b4.tar.gz
deployment-28b0ccfca5d0cf2de31548d8051207583a20c3b4.tar.bz2
deployment-28b0ccfca5d0cf2de31548d8051207583a20c3b4.zip
remove unused script
-rwxr-xr-xtest.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/test.sh b/test.sh
deleted file mode 100755
index 313335f..0000000
--- a/test.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 'test' user.
-
-if ! test "test" = $(whoami); then
- echo This script can only be run by the 'test' user, exiting..
- exit 1
-fi
-
-echo Creating the 'shared-data' directory.
-mkdir $HOME/shared-data