updated readme and updated net installer

This commit is contained in:
FezVrasta 2015-06-21 13:39:46 +02:00
parent 45e49bd2cf
commit 94036bfb8f
2 changed files with 8 additions and 10 deletions

View File

@ -39,17 +39,12 @@ After these edits, you'll need to restart your bash session or reconnect to your
To install ARK Server Tools run these commands:
```sh
cd ~
wget https://github.com/FezVrasta/ark-server-tools/archive/master.tar.gz
tar -zxvf master.tar.gz
cd ark-server-tools-master/tools
chmod u+x install.sh
sudo sh install.sh steam
curl -s https://raw.githubusercontent.com/FezVrasta/ark-server-tools/master/netinstall.sh | bash -s steam
```
NB: You may want to change the `install.sh` parameter to fit your steam user if different from `steam`.
NB: You may want to change the `bash -s` parameter to fit your steam user if different from `steam`.
This will copy the `arkmanager` and the `arkdaemon` to the proper directories and will create an empty log directory in `/var/log` for ARK Server Tools.
This will copy the `arkmanager` and the `arkdaemon` to the proper directories and will create an empty log directory in `/var/log` for ARK Server Tools.
## Configure ARK Server

View File

@ -12,10 +12,13 @@ tar -zxvf master.tar.gz
# Install ARK Server Tools
cd ark-server-tools-master/tools
chmod +x install.sh
sh install.sh $1
if [[ -n $(sh install.sh $1) ]]; then
echo "Something where wrong :("
else
echo "ARK Server Tools were correctly installed in your system inside the home directory of $1!"
fi
# Remove the installation files
rm -f master.tar.gz
rm -rf /tmp/ark-server-tools-master
echo "ARK Server Tools were correctly installed in your system inside the home directory of $1!"