Fix install script
This commit is contained in:
parent
8141981e27
commit
eb2aaf9b18
30
install.sh
30
install.sh
@ -69,6 +69,7 @@ install_0.4() {
|
|||||||
verif
|
verif
|
||||||
git submodule update --remote --recursive
|
git submodule update --remote --recursive
|
||||||
verif
|
verif
|
||||||
|
cd ..
|
||||||
else
|
else
|
||||||
echo "Mise à jour annulé."
|
echo "Mise à jour annulé."
|
||||||
fi
|
fi
|
||||||
@ -78,8 +79,8 @@ install_0.4() {
|
|||||||
cd server-0.4
|
cd server-0.4
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
verif
|
verif
|
||||||
|
cd ..
|
||||||
fi
|
fi
|
||||||
cd ..
|
|
||||||
}
|
}
|
||||||
|
|
||||||
install_minetest() {
|
install_minetest() {
|
||||||
@ -194,7 +195,7 @@ install_world() {
|
|||||||
if [[ ! -d minetest/worlds/nalc ]]; then
|
if [[ ! -d minetest/worlds/nalc ]]; then
|
||||||
mkdir -p minetest/worlds/nalc
|
mkdir -p minetest/worlds/nalc
|
||||||
if [[ $ver == "0.4" ]]; then
|
if [[ $ver == "0.4" ]]; then
|
||||||
ln -s $(pwd)/server-0.4/worlds/minetestforfun/world.mt minetest/worlds/nalc/worlds.mt
|
ln -s $(pwd)/server-0.4/worlds/minetestforfun/world.mt minetest/worlds/nalc/world.mt
|
||||||
else
|
else
|
||||||
ln -s $(pwd)/world.mt minetest/worlds/nalc/world.mt
|
ln -s $(pwd)/world.mt minetest/worlds/nalc/world.mt
|
||||||
fi
|
fi
|
||||||
@ -272,6 +273,29 @@ install_mods() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
if [[ ! -a minetest/minetest.conf ]]; then
|
||||||
|
if [[ $ver == "0.4" ]]; then
|
||||||
|
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"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -d logs ]]; then
|
||||||
|
mkdir logs
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $ver == "0.4"]]; then
|
||||||
|
if [[ ! -a start.sh]]; then
|
||||||
|
cp server-0.4/other_things/scripts/Server-side/script/start-mff.sh ./start.sh
|
||||||
|
echo "Veuiller éditer le fichier start.sh"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
ver=$(strip $1)
|
ver=$(strip $1)
|
||||||
|
|
||||||
@ -292,7 +316,7 @@ init() {
|
|||||||
install_minetest_game
|
install_minetest_game
|
||||||
install_mods
|
install_mods
|
||||||
install_world
|
install_world
|
||||||
|
post_install
|
||||||
echo "L'installation est terminé. Bravo !"
|
echo "L'installation est terminé. Bravo !"
|
||||||
else
|
else
|
||||||
echo "Installation annulée. Fin."
|
echo "Installation annulée. Fin."
|
||||||
|
Loading…
Reference in New Issue
Block a user