kremsy wrote:magnetik wrote:Of course!
It's only way faster for debian/ubuntu/mint users..
Yes, but me for example has every server running under an own linux user and seperated from eachother, so the apt helps not much, except you would make something that we can have something like a path on apt-get.
In your case, you can use links to /opt/maniaplanet-server (with ln -s command) and let the UserData folder local for each user.
An exemple : toto ant titi are 2 users using ManiaPlanet. The ManiaPlanet folder is in their homedirectory
You have : /home/toto/ManiaPlanet and /home/titi.ManiaPlanet
The 2 folders are copies of same datas.
Now you can use these commands :
move /home/toto/ManiaPlanet /home/toto/ManiaPlanet_old
mkdir /home/toto/ManiaPlanet
ln -s /opt/maniaplanet-server/* /home/toto/ManiaPlanet/
rm /home/toto/ManiaPlanet/UserData
cp -R /home/toto/ManiaPlanet_old/UserData /home/toto/ManiaPlanet/
Do the same for titi and you can benefit seperate configurations and single ManiaPlanet.
By removing the old ManiaPlanet folders, you will gain some place too ^^