commit 28b0ccfca5d0cf2de31548d8051207583a20c3b4 parent a6af8c8338f3e7aaecf2736a3cf4fc278493486e Author: Florian Dold <florian@dold.me> Date: Wed, 14 Apr 2021 12:08:53 +0200 remove unused script Diffstat:
| D | test.sh | | | 14 | -------------- |
1 file changed, 0 insertions(+), 14 deletions(-)
diff --git a/test.sh b/test.sh @@ -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