Add files via upload

This commit is contained in:
blueShard-dev
2020-06-28 11:15:51 +00:00
committed by GitHub
parent b8e3072563
commit bc65ff575d
31 changed files with 6762 additions and 0 deletions

11
aion_data/etc/install.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/bash
if [ ! -d "/usr/local/aion-"]; then
apt-get install git
git --clone https://github.com/blueShard-dev/aion /tmp/aion_installation
bash /tmp/aion_installation/install.sh
rm -r /tmp/aion_installation
else
echo "Aion is already installed"
fi