From b05be03ca7f8f0543762939ab20a7f31de82bc5c Mon Sep 17 00:00:00 2001
From: Dominik Pfennig <dominik@suma-ev.de>
Date: Tue, 16 Aug 2016 08:45:24 +0200
Subject: [PATCH] Delete checkServerStatus.sh

---
 deploy/checkServerStatus.sh | 48 -------------------------------------
 1 file changed, 48 deletions(-)
 delete mode 100755 deploy/checkServerStatus.sh

diff --git a/deploy/checkServerStatus.sh b/deploy/checkServerStatus.sh
deleted file mode 100755
index 04fc03e90..000000000
--- a/deploy/checkServerStatus.sh
+++ /dev/null
@@ -1,48 +0,0 @@
-path="$1"
-# Klone das Repo neu, falls es noch nicht existiert
-if [ ! -d ~/MetaGer ]
-then 
-	cd ~/
-	git clone "$path" 
-	cd ~/MetaGer
-	composer update 
-	chmod -R 777 storage/ bootstrap/cache
-fi
-# Falls notwendig Laravel-Framework initialisieren:
-
-if [ ! -f ~/MetaGer/.env ]
-then 
-	cd ~/MetaGer
-	cp .env.example .env
-fi
-if [ $(grep "SomeRandomString" ~/MetaGer/.env) ]
-then 
-	cd ~/MetaGer
-	php artisan key:generate
-fi
-# Falls notwendig Homestead Server intialisieren:
-if [ ! -d ~/Homestead ]
-then
-	cd ~/
-	# Wir brauchen unseren öffentlichen ssh Schlüssel:
-	if [ ! -d .ssh ]
-	then
-		mkdir .ssh
-		chmod 700 .ssh
-	fi
-	if [ ! -f .ssh/id_rsa.pub ]
-	then
-		cd .ssh
-		ssh-keygen -t rsa -N "" -f id_rsa
-		cd ~/
-	fi
-	vagrant box add --provider virtualbox laravel/homestead
-	git clone https://github.com/laravel/homestead.git Homestead
-	cd Homestead/
-	bash init.sh
-	cd ~/
-	cp -f "$path/deploy/Homestead.yaml" .homestead/
-	cd Homestead/
-	vagrant up
-	echo "Your server is now running under http://localhost:8000"
-fi
-- 
GitLab