From b3b48f737df3e8930f0f89fcae6d6f67df51f457 Mon Sep 17 00:00:00 2001 From: Marwolf Date: Fri, 10 Aug 2018 22:29:33 -0400 Subject: [PATCH] Removal of unneeded script files --- Delete_Local_Repos_Linux_Mac.sh | 7 ------- Delete_Local_Repos_Windows.cmd | 10 ---------- Fetch_Updates_Linux_Mac.sh | 9 --------- Fetch_Updates_Windows.cmd | 12 ------------ Import_Databases_Linux_Mac.sh | 17 ----------------- Stop_Game_Linux_Mac.sh | 9 --------- Stop_Game_Windows.cmd | 5 +++-- View_Docker_Container_Logs_Linux_Mac.sh | 3 --- View_Docker_Container_Logs_Windows.cmd | 5 ----- 9 files changed, 3 insertions(+), 74 deletions(-) delete mode 100755 Delete_Local_Repos_Linux_Mac.sh delete mode 100644 Delete_Local_Repos_Windows.cmd delete mode 100755 Fetch_Updates_Linux_Mac.sh delete mode 100644 Fetch_Updates_Windows.cmd delete mode 100755 Import_Databases_Linux_Mac.sh delete mode 100755 Stop_Game_Linux_Mac.sh delete mode 100755 View_Docker_Container_Logs_Linux_Mac.sh delete mode 100644 View_Docker_Container_Logs_Windows.cmd diff --git a/Delete_Local_Repos_Linux_Mac.sh b/Delete_Local_Repos_Linux_Mac.sh deleted file mode 100755 index 69cd819..0000000 --- a/Delete_Local_Repos_Linux_Mac.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -echo "" -echo "Deleting local repositories." -echo "" -sudo make flush -echo "" diff --git a/Delete_Local_Repos_Windows.cmd b/Delete_Local_Repos_Windows.cmd deleted file mode 100644 index c16b2fd..0000000 --- a/Delete_Local_Repos_Windows.cmd +++ /dev/null @@ -1,10 +0,0 @@ - @echo off -echo: -echo Deleting local repositories. -echo: -make flush-windows -echo: -echo: -echo Local repositories have been deleted. -echo: -pause diff --git a/Fetch_Updates_Linux_Mac.sh b/Fetch_Updates_Linux_Mac.sh deleted file mode 100755 index 75982da..0000000 --- a/Fetch_Updates_Linux_Mac.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -echo "" -echo "Fetching updates to local repositories." -echo "" -sudo git pull -sudo make pull-game -sudo make pull-website -echo "" diff --git a/Fetch_Updates_Windows.cmd b/Fetch_Updates_Windows.cmd deleted file mode 100644 index 27ee8a4..0000000 --- a/Fetch_Updates_Windows.cmd +++ /dev/null @@ -1,12 +0,0 @@ - @echo off -echo: -echo Fetching updates to local repositories. -echo: -git pull -make pull-game-windows -make pull-website-windows -echo: -echo: -echo Local repositories have been updated if existing. -echo: -pause diff --git a/Import_Databases_Linux_Mac.sh b/Import_Databases_Linux_Mac.sh deleted file mode 100755 index d07add6..0000000 --- a/Import_Databases_Linux_Mac.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -echo "" -echo "Attempting to import (or overwrite) the game database." -echo "" -sudo make import-game -echo "" -echo "" -echo "Attempting to import (or overwrite) the website database." -echo "" -sudo make import-website -echo "" -echo "" -echo "Attempting to import (or overwrite) the wiki database." -echo "" -sudo make import-wiki -echo "" diff --git a/Stop_Game_Linux_Mac.sh b/Stop_Game_Linux_Mac.sh deleted file mode 100755 index 4d46251..0000000 --- a/Stop_Game_Linux_Mac.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -echo "" -echo "Stopping the running Docker containers." -echo "" -echo "" -sudo make stop -echo "" -echo "" diff --git a/Stop_Game_Windows.cmd b/Stop_Game_Windows.cmd index 2438355..a45200a 100644 --- a/Stop_Game_Windows.cmd +++ b/Stop_Game_Windows.cmd @@ -1,12 +1,13 @@ @echo off echo: -echo Stopping the running Docker containers. +echo Stopping associated Docker containers. echo: make stop echo: echo: -echo Killing any running in the background instance of the game server. +echo Killing any instances of the game server that are running in the background. echo: tskill java /a echo: +echo: pause diff --git a/View_Docker_Container_Logs_Linux_Mac.sh b/View_Docker_Container_Logs_Linux_Mac.sh deleted file mode 100755 index 07709aa..0000000 --- a/View_Docker_Container_Logs_Linux_Mac.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -sudo make logs diff --git a/View_Docker_Container_Logs_Windows.cmd b/View_Docker_Container_Logs_Windows.cmd deleted file mode 100644 index 19a5d67..0000000 --- a/View_Docker_Container_Logs_Windows.cmd +++ /dev/null @@ -1,5 +0,0 @@ - @echo off -echo: -make logs -echo: -pause