Mise à jour vers nouveau serveur git et corrections
This commit is contained in:
parent
b2c16a547e
commit
05474b276f
301
install.sh
301
install.sh
@ -29,8 +29,9 @@ usage() {
|
|||||||
echo -e "\t-i --irrlicht\tChemin personnalisé des sources irrlicht."
|
echo -e "\t-i --irrlicht\tChemin personnalisé des sources irrlicht."
|
||||||
echo -e "\t-p --postgresql\tSi vous voulez que le serveur soit configuré avec postgresql"
|
echo -e "\t-p --postgresql\tSi vous voulez que le serveur soit configuré avec postgresql"
|
||||||
echo "Arguments :"
|
echo "Arguments :"
|
||||||
echo -e "\t0.5 : Installation du serveur avec minetest-0.5.x. Suivez les instructions... (Non stable !)"
|
echo -e "\t5 : Installation du serveur avec minetest-5.x. Suivez les instructions... (Non stable !)"
|
||||||
echo -e "\t0.4 : Installation du serveur avec minetest-0.4.x. Suivez les instructions... (Stable)"
|
echo -e "\t0.4 : Installation du serveur avec minetest-0.4.x. Suivez les instructions... (Stable)"
|
||||||
|
echo -e "\tmaster : Installation du serveur avec la branche master de minetest. Suivez les instructions... (Non Stable !)"
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,7 +68,7 @@ postgresql() {
|
|||||||
read -p "Indiquez le mot de passe : " pg_password
|
read -p "Indiquez le mot de passe : " pg_password
|
||||||
read -p "Indiquez le nom de la BDD à utiliser : " pg_dbname
|
read -p "Indiquez le nom de la BDD à utiliser : " pg_dbname
|
||||||
|
|
||||||
echo "gameid = minetest_game" > world.mt
|
echo "gameid = nalc_game" > world.mt
|
||||||
echo "backend = postgresql" >> world.mt
|
echo "backend = postgresql" >> world.mt
|
||||||
echo "player_backend = postgresql" >> world.mt
|
echo "player_backend = postgresql" >> world.mt
|
||||||
echo "pgsql_connection = host=$pg_url user=$pg_user password=$pg_password dbname=$pg_dbname" >> world.mt
|
echo "pgsql_connection = host=$pg_url user=$pg_user password=$pg_password dbname=$pg_dbname" >> world.mt
|
||||||
@ -139,6 +140,8 @@ install_minetest() {
|
|||||||
local branch="-b master"
|
local branch="-b master"
|
||||||
if [[ $ver == "0.4" ]]; then
|
if [[ $ver == "0.4" ]]; then
|
||||||
branch="-b stable-0.4"
|
branch="-b stable-0.4"
|
||||||
|
elif [[ $ver == "5" ]]; then
|
||||||
|
branch="-b stable-5.0"
|
||||||
fi
|
fi
|
||||||
git clone --depth 1 $branch https://github.com/minetest/minetest.git
|
git clone --depth 1 $branch https://github.com/minetest/minetest.git
|
||||||
verif
|
verif
|
||||||
@ -147,28 +150,28 @@ install_minetest() {
|
|||||||
echo "Minetest va être (re)compilé..."
|
echo "Minetest va être (re)compilé..."
|
||||||
sleep 3
|
sleep 3
|
||||||
cd minetest
|
cd minetest
|
||||||
cmake . -DBUILD_CLIENT=0 -DBUILD_SERVER=1 -DENABLE_SOUND=0 -DENABLE_SYSTEM_GMP=1 $irrlicht_src -DENABLE_LEVELDB=0 -DENABLE_REDIS=1 -DENABLE_POSTGRESQL=1 -DRUN_IN_PLACE=1 -DENABLE_GETTEXT=1 -DENABLE_FREETYPE=1 -DENABLE_LUAJIT=1 -DENABLE_CURL=1
|
cmake . -DBUILD_CLIENT=0 -DBUILD_SERVER=1 -DENABLE_SOUND=0 -DENABLE_SYSTEM_GMP=1 $irrlicht_src -DENABLE_LEVELDB=1 -DENABLE_REDIS=1 -DENABLE_POSTGRESQL=1 -DRUN_IN_PLACE=1 -DENABLE_GETTEXT=1 -DENABLE_FREETYPE=1 -DENABLE_LUAJIT=1 -DENABLE_CURL=1
|
||||||
make -j$makeopt
|
make -j$makeopt
|
||||||
echo "Installation de Minetest terminé."
|
echo "Installation de Minetest terminé."
|
||||||
cd ..
|
cd ..
|
||||||
}
|
}
|
||||||
|
|
||||||
install_minetest_game() {
|
install_minetest_game() {
|
||||||
if [[ -d minetest_game ]]; then
|
if [[ -d nalc_game ]]; then
|
||||||
echo "Installation précédente du jeux Minetest détecté."
|
echo "Installation précédente du jeux NALC détecté."
|
||||||
read -p "Mettre à jour ? (y,n,clean,cancel) " continue
|
read -p "Mettre à jour ? (y,n,clean,cancel) " continue
|
||||||
if [[ $continue == "y" ]]; then
|
if [[ $continue == "y" ]]; then
|
||||||
cd minetest_game
|
cd nalc_game
|
||||||
git pull
|
git pull
|
||||||
verif
|
verif
|
||||||
cd ..
|
cd ..
|
||||||
echo "Mise à jour du jeux Minetest depuis dépôt distant terminé."
|
echo "Mise à jour du jeux NALC depuis dépôt distant terminé."
|
||||||
elif [[ $continue == "clean" ]]; then
|
elif [[ $continue == "clean" ]]; then
|
||||||
echo "/!\ Cette action va effacer les données du répertoire minetest_game"
|
echo "/!\ Cette action va effacer les données du répertoire nalc_game"
|
||||||
read -p "Êtes-vous sûr de vouloir continuer ? (y or n) " continue
|
read -p "Êtes-vous sûr de vouloir continuer ? (y or n) " continue
|
||||||
if [[ $continue == "y" ]]; then
|
if [[ $continue == "y" ]]; then
|
||||||
rm -rf minetest_game
|
rm -rf nalc_game
|
||||||
echo "Jeux Minetest supprimé."
|
echo "Jeux NALC supprimé."
|
||||||
else
|
else
|
||||||
echo "Mise à jour annulée. Terminé."
|
echo "Mise à jour annulée. Terminé."
|
||||||
exit 0
|
exit 0
|
||||||
@ -179,31 +182,37 @@ install_minetest_game() {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -d minetest_game ]]; then
|
if [[ ! -d nalc_game ]]; then
|
||||||
local branch="-b master"
|
local branch="-b master"
|
||||||
if [[ $ver == "0.4" ]]; then
|
if [[ $ver == "0.4" ]]; then
|
||||||
branch="-b stable-0.4"
|
branch="-b nalc"
|
||||||
|
elif [[ $ver == "5" ]]; then
|
||||||
|
branch="-b stable-5.0"
|
||||||
fi
|
fi
|
||||||
git clone --depth 1 $branch https://github.com/minetest/minetest_game.git
|
git clone --depth 1 $branch $URL/nalc_game.git
|
||||||
verif
|
verif
|
||||||
echo "Clonage de minetest_game terminé."
|
echo "Clonage de nalc_game terminé."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -L minetest/games/minetest_game ]]; then
|
if [[ ! -L minetest/games/nalc_game ]]; then
|
||||||
ln -s $(pwd)/minetest_game minetest/games/minetest_game
|
ln -s $(pwd)/nalc_game minetest/games/nalc_game
|
||||||
echo "Lien symbolique minetest/games/minetest_game vers $(pwd)/minetest_game créé."
|
echo "Lien symbolique minetest/games/nalc_game vers $(pwd)/nalc_game créé."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Installation/Mise à jour du jeux Minetest terminé."
|
echo "Installation/Mise à jour du jeux NALC terminé."
|
||||||
}
|
}
|
||||||
|
|
||||||
install_world() {
|
install_world() {
|
||||||
if [[ -d minetest/worlds/nalc ]]; then
|
local world_name="nalc"
|
||||||
|
if [[ -n $pg_dbname ]]; then
|
||||||
|
world_name=$pg_dbname
|
||||||
|
fi
|
||||||
|
if [[ -d minetest/worlds/$world_name ]]; then
|
||||||
echo "Une map est déjà présente. Que souhaitez-vous faire ?"
|
echo "Une map est déjà présente. Que souhaitez-vous faire ?"
|
||||||
read -p "Choisissez parmi la liste ([1]Nouveau, [2]Utiliser) : " continuer
|
read -p "Choisissez parmi la liste ([1]Nouveau, [2]Utiliser) : " continuer
|
||||||
if [[ $continuer == 1 ]]; then
|
if [[ $continuer == 1 ]]; then
|
||||||
if [[ -n $pg_dbname ]]; then
|
if [[ -n $pg_dbname ]]; then
|
||||||
read -p "Les BDD $pg_name et players-$pg_name ne seront pas effacées. À vous de le faire manuellement après ce script ! -- Press enter -- : " continuer
|
read -p "Les BDD $pg_dbname et players-$pg_dbname ne seront pas effacées. À vous de le faire manuellement après ce script ! -- Press enter -- : " continuer
|
||||||
|
|
||||||
# dropdb $pg_dbname
|
# dropdb $pg_dbname
|
||||||
# dropdb players-$pg_dbname
|
# dropdb players-$pg_dbname
|
||||||
@ -211,48 +220,131 @@ install_world() {
|
|||||||
# createdb players-$pg_dbname
|
# createdb players-$pg_dbname
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -d minetest/worlds/nalc_old ]]; then
|
if [[ -d "minetest/worlds/"$world_name"_old" ]]; then
|
||||||
rm -rf minetest/worlds/nalc_old
|
rm -rf "minetest/worlds/"$world_name"_old"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mv minetest/worlds/nalc minetest/worlds/nalc_old
|
mv minetest/worlds/$world_name "minetest/worlds/"$world_name"_old"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -d minetest/worlds/nalc ]]; then
|
if [[ ! -d minetest/worlds/$world_name ]]; then
|
||||||
mkdir -p minetest/worlds/nalc
|
mkdir -p minetest/worlds/$world_name
|
||||||
if [[ -n $pg_dbname ]]; then
|
if [[ -n $pg_dbname ]]; then
|
||||||
createdb $pg_dbname
|
createdb $pg_dbname
|
||||||
createdb players-$pg_dbname
|
createdb players-$pg_dbname
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ln -s $(pwd)/world.mt minetest/worlds/nalc/world.mt
|
ln -s $(pwd)/world.mt minetest/worlds/$world_name/world.mt
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
install_mods() {
|
install_mods() {
|
||||||
if [[ $ver == "0.4" ]]; then
|
# if [[ $ver == "0.4" ]]; then
|
||||||
local i=0
|
# local i=0
|
||||||
local md[1]="" # Mods to disable
|
# local md[1]="" # Mods to disable
|
||||||
for mod in 3d_armor_ip 3d_armor_sfinv mysql_auth watershed mobs_old magicmithril blackmithril hardenedleather reinforcedleather obsidian eventobjects player_inactive random_messages irc irc_commands profilerdumper profnsched; do
|
# for mod in 3d_armor_ip 3d_armor_sfinv mysql_auth watershed mobs_old magicmithril blackmithril hardenedleather reinforcedleather obsidian eventobjects player_inactive random_messages irc irc_commands profilerdumper profnsched; do
|
||||||
i=$(( $i+1 ))
|
# i=$(( $i+1 ))
|
||||||
md[$i]=$mod
|
# md[$i]=$mod
|
||||||
|
# done
|
||||||
|
#
|
||||||
|
# if [[ -d minetest/mods ]]; then
|
||||||
|
# rm -rf minetest/mods
|
||||||
|
# ln -s $(pwd)/server-0.4/mods minetest/mods
|
||||||
|
# fi
|
||||||
|
#
|
||||||
|
# if [[ -a world.mt && -z $pg_dbname ]]; then
|
||||||
|
# rm world.mt
|
||||||
|
# cp worldmt.conf world.mt
|
||||||
|
# fi
|
||||||
|
#
|
||||||
|
# ls server-0.4/mods | while read -r mod; do
|
||||||
|
# if [[ -a server-0.4/mods/$mod/modpack.txt ]]; then
|
||||||
|
# ls server-0.4/mods/$mod | while read -r submod; do
|
||||||
|
# if [[ -d server-0.4/mods/$mod/$submod ]]; then
|
||||||
|
# local mod_enable="true"
|
||||||
|
# for (( modn=1; modn<=$i; modn++ )); do
|
||||||
|
# if [[ ${md[$modn]} == $submod ]]; then
|
||||||
|
# mod_enable="false"
|
||||||
|
# fi
|
||||||
|
# done
|
||||||
|
# echo "load_mod_$submod = $mod_enable" >> world.mt
|
||||||
|
# if [[ $mod_enable == "true" && -d custom/textures/$submod ]]; then
|
||||||
|
# cp custom/textures/$submod/* server-0.4/mods/$mod/$submod/textures/
|
||||||
|
# fi
|
||||||
|
# fi
|
||||||
|
# done
|
||||||
|
# else
|
||||||
|
# local mod_enable="true"
|
||||||
|
# for (( modn=1; modn<=$i; modn++ )); do
|
||||||
|
# if [[ ${md[$modn]} == $mod ]]; then
|
||||||
|
# mod_enable="false"
|
||||||
|
# fi
|
||||||
|
# done
|
||||||
|
# echo "load_mod_$mod = $mod_enable" >> world.mt
|
||||||
|
# if [[ $mod_enable == "true" && -d custom/textures/$mod ]]; then
|
||||||
|
# cp custom/textures/$submod/* server-0.4/mods/$mod/textures/
|
||||||
|
# fi
|
||||||
|
# fi
|
||||||
|
# done
|
||||||
|
|
||||||
|
if [[ -d nalc-server-mods ]]; then
|
||||||
|
echo "Le dossier de mods est déjà présent. Que souhaitez-vous faire ?"
|
||||||
|
read -p "Choisissez parmi la liste, ([1]update, [2]clean, [3]cancel, [4]Ne rien faire) : " continue
|
||||||
|
if [[ $continue == 1 ]]; then
|
||||||
|
cd nalc-server-mods
|
||||||
|
git pull
|
||||||
|
verif
|
||||||
|
git submodule update --init --recursive
|
||||||
|
verif
|
||||||
|
cd ..
|
||||||
|
elif [[ $continue == 2 ]]; then
|
||||||
|
rm -rf nalc-server-mods
|
||||||
|
elif [[ $continue == 3 ]]; then
|
||||||
|
echo "Mise à jour des mods annulé. Terminé."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -d nalc-server-mods ]]; then
|
||||||
|
git clone $URL/nalc-server-mods.git
|
||||||
|
verif
|
||||||
|
cd nalc-server-mods
|
||||||
|
git submodule update --init --recursive
|
||||||
|
cd ..
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Recréation des liens symboliques et du fichier world.mt (dans tous les cas)
|
||||||
|
rm minetest/mods/*
|
||||||
|
|
||||||
|
if [[ -a world.mt && -z $pg_dbname ]]; then
|
||||||
|
rm world.mt
|
||||||
|
cp worldmt.conf world.mt
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -d custom/mods ]]; then
|
||||||
|
ls custom/mods | while read -r mod; do
|
||||||
|
if [[ -d custom/mods/$mod ]]; then
|
||||||
|
rm nalc-server-mods/$mod
|
||||||
|
ln -s $(pwd)/custom/mods/$mod nalc-server-mods/$mod
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ -d minetest/mods ]]; then
|
local i=0
|
||||||
rm -rf minetest/mods
|
local md[1]="" # Mods to disable
|
||||||
ln -s $(pwd)/server-0.4/mods minetest/mods
|
for mod in 3d_armor_ip 3d_armor_sfinv nalc_lib worldedit_brush; do
|
||||||
fi
|
i=$(( $i+1 ))
|
||||||
|
md[$i]=$mod
|
||||||
|
done
|
||||||
|
|
||||||
if [[ -a world.mt && -z $pg_dbname ]]; then
|
ls nalc-server-mods | while read -r mod; do
|
||||||
rm world.mt
|
if [[ -d nalc-server-mods/$mod ]]; then
|
||||||
cp worldmt.conf world.mt
|
ln -s $(pwd)/nalc-server-mods/$mod minetest/mods/$mod
|
||||||
fi
|
|
||||||
|
|
||||||
ls server-0.4/mods | while read -r mod; do
|
if [[ -a nalc-server-mods/$mod/modpack.txt ]]; then
|
||||||
if [[ -a server-0.4/mods/$mod/modpack.txt ]]; then
|
ls nalc-server-mods/$mod | while read -r submod; do
|
||||||
ls server-0.4/mods/$mod | while read -r submod; do
|
if [[ -d nalc-server-mods/$mod/$submod ]]; then
|
||||||
if [[ -d server-0.4/mods/$mod/$submod ]]; then
|
|
||||||
local mod_enable="true"
|
local mod_enable="true"
|
||||||
for (( modn=1; modn<=$i; modn++ )); do
|
for (( modn=1; modn<=$i; modn++ )); do
|
||||||
if [[ ${md[$modn]} == $submod ]]; then
|
if [[ ${md[$modn]} == $submod ]]; then
|
||||||
@ -260,95 +352,26 @@ install_mods() {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
echo "load_mod_$submod = $mod_enable" >> world.mt
|
echo "load_mod_$submod = $mod_enable" >> world.mt
|
||||||
if [[ $mod_enable == "true" && -d custom/textures/$submod ]]; then
|
|
||||||
cp custom/textures/$submod/* server-0.4/mods/$mod/$submod/textures/
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
local mod_enable="true"
|
local mod_enable="true"
|
||||||
for (( modn=1; modn<=$i; modn++ )); do
|
for (( modn=1; modn<=$i; modn++ )); do
|
||||||
if [[ ${md[$modn]} == $mod ]]; then
|
if [[ ${md[$modn]} == $submod ]]; then
|
||||||
mod_enable="false"
|
mod_enable="false"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
echo "load_mod_$mod = $mod_enable" >> world.mt
|
echo "load_mod_$mod = $mod_enable" >> world.mt
|
||||||
if [[ $mod_enable == "true" && -d custom/textures/$mod ]]; then
|
|
||||||
cp custom/textures/$submod/* server-0.4/mods/$mod/textures/
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
else
|
|
||||||
if [[ -d nalc-server-mods ]]; then
|
|
||||||
echo "Le dossier de mods est déjà présent. Que souhaitez-vous faire ?"
|
|
||||||
read -p "Choisissez parmi la liste, ([1]update, [2]clean, [3]cancel, [4]Ne rien faire) : " continue
|
|
||||||
if [[ $continue == 1 ]]; then
|
|
||||||
cd nalc-server-mods
|
|
||||||
git -c http.sslVerify=false pull
|
|
||||||
verif
|
|
||||||
git -c http.sslVerify=false submodule update --init --recursive
|
|
||||||
verif
|
|
||||||
cd ..
|
|
||||||
elif [[ $continue == 2 ]]; then
|
|
||||||
rm -rf nalc-server-mods
|
|
||||||
elif [[ $continue == 3 ]]; then
|
|
||||||
echo "Mise à jour des mods annulé. Terminé."
|
|
||||||
exit 0
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
if [[ ! -d nalc-server-mods ]]; then
|
echo "Liens des mods créés dans minetest/mods/"
|
||||||
git -c http.sslVerify=false clone $URL/nalc-server-mods.git
|
|
||||||
verif
|
|
||||||
cd nalc-server-mods
|
|
||||||
git -c http.sslVerify=false submodule update --init --recursive
|
|
||||||
cd ..
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Recréation des liens symboliques et du fichier world.mt (dans tous les cas)
|
|
||||||
rm minetest/mods/*
|
|
||||||
|
|
||||||
if [[ -a world.mt && -z $pg_dbname ]]; then
|
|
||||||
rm world.mt
|
|
||||||
cp worldmt.conf world.mt
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -d custom/mods ]]; then
|
|
||||||
ls custom/mods | while read -r mod; do
|
|
||||||
if [[ -d custom/mods/$mod ]]; then
|
|
||||||
rm nalc-server-mods/$mod
|
|
||||||
ln -s $(pwd)/custom/mods/$mod nalc-server-mods/$mod
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
ls nalc-server-mods | while read -r mod; do
|
|
||||||
if [[ -d nalc-server-mods/$mod ]]; then
|
|
||||||
ln -s $(pwd)/nalc-server-mods/$mod minetest/mods/$mod
|
|
||||||
|
|
||||||
if [[ -a nalc-server-mods/$mod/modpack.txt ]]; then
|
|
||||||
ls nalc-server-mods/$mod | while read -r submod; do
|
|
||||||
if [[ -d nalc-server-mods/$mod/$submod ]]; then
|
|
||||||
echo "load_mod_$submod = true" >> world.mt
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
else
|
|
||||||
echo "load_mod_$mod = true" >> world.mt
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
echo "Liens des mods créés dans minetest/mods/"
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
if [[ ! -a minetest/minetest.conf ]]; then
|
if [[ ! -a minetest/minetest.conf ]]; then
|
||||||
if [[ $ver == "0.4" ]]; then
|
cp minetest-$ver.conf minetest/minetest.conf
|
||||||
cp server-0.4/minetest.conf minetest/minetest.conf
|
|
||||||
else
|
|
||||||
cp minetest.conf minetest/minetest.conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Veuillez éditer le fichier $(pwd)/minetest/minetest.conf"
|
echo "Veuillez éditer le fichier $(pwd)/minetest/minetest.conf"
|
||||||
fi
|
fi
|
||||||
@ -357,25 +380,23 @@ post_install() {
|
|||||||
mkdir logs
|
mkdir logs
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $ver == "0.4" ]]; then
|
if [[ ! -a start.sh ]]; then
|
||||||
if [[ ! -a start.sh ]]; then
|
cp start.sh.example ./start.sh
|
||||||
cp server-0.4/other_things/scripts/Server-side/script/start-mff.sh ./start.sh
|
echo "Veuiller éditer le fichier start.sh"
|
||||||
echo "Veuiller éditer le fichier start.sh"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# fix technic_worldgen crash
|
|
||||||
cd server-0.4/mods/technic
|
|
||||||
git checkout fb93388f06fe87ee75aaaf04cf6edcf01a26d981 technic_worldgen/oregen.lua
|
|
||||||
cd ../../..
|
|
||||||
echo "Fix technic_worldgen pour éviter crash appliqué."
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# fix technic_worldgen crash
|
||||||
|
#cd server-0.4/mods/technic
|
||||||
|
#git checkout fb93388f06fe87ee75aaaf04cf6edcf01a26d981 technic_worldgen/oregen.lua
|
||||||
|
#cd ../../..
|
||||||
|
#echo "Fix technic_worldgen pour éviter crash appliqué."
|
||||||
|
|
||||||
# skindb updater (à relancer à la main plusieurs fois pour l'instant)
|
# skindb updater (à relancer à la main plusieurs fois pour l'instant)
|
||||||
if [[ -d nalc-server-mods/skinsdb/updater ]]; then
|
#if [[ -d nalc-server-mods/skinsdb/updater ]]; then
|
||||||
cd nalc-server-mods/skinsdb/updater
|
# cd nalc-server-mods/skinsdb/updater
|
||||||
./update_from_db.py
|
# ./update_from_db.py
|
||||||
cd ../../..
|
# cd ../../..
|
||||||
fi
|
#fi
|
||||||
}
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
@ -386,14 +407,14 @@ init() {
|
|||||||
elif [[ -n $url ]]; then
|
elif [[ -n $url ]]; then
|
||||||
URL=$url
|
URL=$url
|
||||||
else
|
else
|
||||||
URL="https://github.com/sys4-fr"
|
URL="https://sys4.fr/gitea/nalc"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
read -p "L'installation va démarrer. Continuer ? (y or n) : " continue
|
read -p "L'installation va démarrer. Continuer ? (y or n) : " continue
|
||||||
if [[ $continue == "y" ]]; then
|
if [[ $continue == "y" ]]; then
|
||||||
if [[ $ver == "0.4" ]]; then
|
# if [[ $ver == "0.4" ]]; then
|
||||||
install_0.4
|
# install_0.4
|
||||||
fi
|
# fi
|
||||||
install_minetest
|
install_minetest
|
||||||
install_minetest_game
|
install_minetest_game
|
||||||
install_mods
|
install_mods
|
||||||
@ -407,10 +428,8 @@ init() {
|
|||||||
|
|
||||||
action() {
|
action() {
|
||||||
local arg=$(strip $1)
|
local arg=$(strip $1)
|
||||||
if [[ $arg == "0.5" ]]; then
|
if [[ $arg == "5" || $arg == "0.4" || $arg == "master" ]]; then
|
||||||
init "0.5"
|
init $arg
|
||||||
elif [[ $arg == "0.4" ]]; then
|
|
||||||
init "0.4"
|
|
||||||
else
|
else
|
||||||
error
|
error
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user