Scripts, cache extract
This commit is contained in:
@@ -23,7 +23,13 @@ echo Waiting for 5 seconds to give the MySQL server time to start before importi
|
|||||||
echo Waiting for 5 seconds to give the MySQL server time to start before importing the databases.
|
echo Waiting for 5 seconds to give the MySQL server time to start before importing the databases.
|
||||||
echo:
|
echo:
|
||||||
timeout 5
|
timeout 5
|
||||||
|
Windows\make import-windows
|
||||||
|
|
||||||
|
cls
|
||||||
|
echo Extracting client cache
|
||||||
|
echo:
|
||||||
|
mkdir %userprofile%/OpenRSC
|
||||||
Windows/PKUNZIP.EXE Game/Open-RSC-Game/client/cache.zip %userprofile%/OpenRSC
|
Windows/PKUNZIP.EXE Game/Open-RSC-Game/client/cache.zip %userprofile%/OpenRSC
|
||||||
|
|
||||||
cls
|
cls
|
||||||
echo First time setup is now complete. Visit http://localhost in your browser to verify.
|
echo First time setup is now complete. Visit http://localhost in your browser to verify.
|
||||||
|
|||||||
BIN
Windows/PKUNZIP.EXE
Executable file
BIN
Windows/PKUNZIP.EXE
Executable file
Binary file not shown.
@@ -1,8 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
clear
|
||||||
docker login
|
docker login
|
||||||
sudo make stop
|
sudo make stop
|
||||||
sudo make start
|
sudo make start
|
||||||
sudo make clone
|
sudo make clone
|
||||||
sleep 5
|
sleep 5
|
||||||
sudo make import
|
sudo make import
|
||||||
|
mkdir ~/OpenRSC
|
||||||
|
unzip Game/Open-RSC-Game/client/cache.zip -d ~/OpenRSC
|
||||||
|
|||||||
7
install-docker-linux.sh
Executable file
7
install-docker-linux.sh
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
|
||||||
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
|
||||||
|
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install docker-ce build-essential docker-compose -y
|
||||||
0
pull-updates.sh
Normal file → Executable file
0
pull-updates.sh
Normal file → Executable file
Reference in New Issue
Block a user