Skip to content

Commit 3b11bd3

Browse files
authored
Merge pull request #23 from TandelK/development-testing
Markdown Fix of Github Readme and Eg.
2 parents b08d945 + 3580c05 commit 3b11bd3

File tree

2 files changed

+20
-21
lines changed

2 files changed

+20
-21
lines changed

README.md

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Get5-AutoInstallScript
1+
# Get5-Web-AutoInstallScript
22

3-
Are you having hard time installing Get5-Web Panel ? Well here is a quick Auto Install Script created by me for installing https://github.com/PhlexPlexico/get5-web version. The reason why i selected Phlex version is due to advance updates and more options added by him.
3+
Are you having hard time installing Get5-Web Panel ? Well here is a quick Auto Install Script created by me for installing <https://github.com/PhlexPlexico/get5-web> version. The reason why i selected Phlex version is due to advance updates and more options added by him.
44

5-
For Installing just simply copy the below code and paste it in Terminal of Ubuntu System. Currently i have only support for Ubuntu System most trusted 16.04 LTS Version. For any other Distro you are free to modify the Script as per requirement and can also send Pull Request to this Repo.
5+
For Installing just simply copy the below code and paste it in Terminal of Ubuntu System. Currently i have only support for Ubuntu System most trusted 16.04 LTS Version. For any other Distro you are free to modify the Script as per requirement and can also send Pull Request to this Repo.
66

77
`wget https://raw.githubusercontent.com/TandelK/Get5-AutoInstallScript/master/get5_auto_installer.sh && chmod +x get5_auto_installer.sh`
88

@@ -16,32 +16,30 @@ For Development Testing Branch use the below code
1616

1717
The reason why wget Bash script does not work is due to selection base in start
1818

19-
## This Auto Install Script Includes
19+
## This Auto Install Script Includes
2020

21-
1) Install : Selection of Master Branch which is stable as well as Development branch is available
21+
1. Install : Selection of Master Branch which is stable as well as Development branch is available
2222

23-
2) Update : Auto Update the Panel and it will automatically run the Upgrade Commands like Requirements or Migrations upgrade after Updates.
23+
2. Update : Auto Update the Panel and it will automatically run the Upgrade Commands like Requirements or Migrations upgrade after Updates.
2424

25-
The below 2 options are generally not required as they are auto created with Install Function
25+
3. Create WSGI : You can manually create WSGI Script if you are having issues.
2626

27-
3) Create WSGI : You can manually create WSGI Script if you are having issues.
27+
4. Apache Configuration : If you have Get5-Web Installed and forgot to do Apache2 Config this will help you creating the same.
28+
The SSL Module will require Certificate File in .crt format as well as Private Key in .key format already existing in the server. Please remember the paths of the SSL Certificate as well as Private Key paths as they are required during HTTPS Version installation.
2829

29-
4) Apache Configuration : If you have Get5-Web Installed and forgot to do Apache2 Config this will help you creating the same.
30-
The SSL Module will require Certificate File in .crt format as well as Private Key in .key format already existing in the server. Please remember the paths of the SSL Certificate as well as Private Key paths as they are required during HTTPS Version installation.
30+
5. Create FTP - This function is for setting up FTP Server for Demo Upload function. Configure FTP settings via Game Server Plugin of Phlex get5_apistats plugin that supports Demo Upload Function.
3131

32-
5) Create FTP - This function is for setting up FTP Server for Demo Upload function. Configure FTP settings via Game Server Plugin of Phlex get5_apistats plugin that supports Demo Upload Function.
32+
6. Remove Get5-Web - Have existing Get5-Web installed and want to remove them quickly , use this function it will remove most of the required files that are used by Get5-Web
3333

34-
6) Remove Get5-Web - Have existing Get5-Web installed and want to remove them quickly , use this function it will remove most of the required files that are used by Get5-Web
34+
7. Exit - Meh !! Just Quit the Script . Why did i even make it function
3535

36-
7) Exit - Meh !! Just Quit the Script . Why did i even make it function
37-
38-
Notes :
36+
Notes :
3937
Sometime after update of development branch i would recommend you to manually check prod_config file if there are any updates.
4038

41-
4239
## Credits
43-
1) Splewis - For the original Get5 Plugin - https://github.com/splewis/get5
44-
2) PhlexPlexico - For his wonderful modification to Get5-Web version will all new functions - https://github.com/PhlexPlexico/get5-web
40+
41+
1) Splewis - For the original Get5 Plugin - <https://github.com/splewis/get5>
42+
2) PhlexPlexico - For his wonderful modification to Get5-Web version will all new functions - <https://github.com/PhlexPlexico/get5-web>
4543
3) xe1os - For testing and helping out fix problems
4644

47-
If anyone wants to share some love please sponsors to two major developers here Splewis and PhlexPlexico for their time given to this projects.
45+
If anyone wants to share some love please sponsors to two major developers here Splewis and PhlexPlexico for their time given to this projects.

get5_auto_installer.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ fi
8585
function apacheconfig()
8686
{
8787
cd /etc/apache2/sites-enabled/
88-
cyanMessage "Please Enter Panel Address without http or https protocol"
88+
cyanMessage "Please Enter Panel Address without http or https protocol [eg. g5panel.website.com]"
8989
read sitename
9090
greenMessage "You have entered $sitename"
9191
while [[ $sitename == http* || $sitename == https* ]];
9292
do
93-
redMessage "Please re-enter Website Address without http or https"
93+
redMessage "Please re-enter Website Address without http or https protocol [eg. g5panel.website.com]"
9494
read -r sitename
9595
greenMessage "You have entered $sitename"
9696
done
@@ -410,6 +410,7 @@ case $option in
410410
redMessage "Warning !! Only added Trusted Steam Admins ID as they have access to everything on the Panel \e[39m"
411411
echo ""
412412
greenMessage "Super Admin's Steam ID 64 (Please ensure values are separated by a comma. eg.id1,id2)"
413+
redMessage "Make sure the Steam ID dont end with [,] in the end"
413414
read -p "Steam ID 64 of Super Admins :" superadminsteamid
414415
while [[ $superadminsteamid == "" ]];
415416
do

0 commit comments

Comments
 (0)