Page 7 of 16
Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 03 Jul 2013, 08:28
by magnetik
Repo updated with 2013-07-02b
Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 04 Jul 2013, 08:50
by magnetik
Repo updated with 2013-07-04
Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 04 Jul 2013, 12:00
by Xymph
magnetik wrote:Repo updated with 2013-07-04
07-04? xbx's standalone release last night was 07-03.
Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 04 Jul 2013, 12:14
by magnetik
Okay maybe it was 03

Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 26 Jul 2013, 09:31
by magnetik
Repo updated with latest version

Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 17 Aug 2013, 22:24
by ubbe
Is it possible to update to a users home folder yet, or do i have to used that shared folder in /opt ?
Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 18 Aug 2013, 10:28
by magnetik
It's not possible to specify the installation directory.
What are you trying to acheive?
Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 18 Aug 2013, 18:39
by ubbe
Someone spoke earlier in the forum about updating installations in the users home directory.
Instead of everyone sharing the one in /opt/maniaplanet-server.
Perhaps it works using shortcuts/links from the home directory to the /opt/maniaplanet-server with ln -s?
Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 19 Aug 2013, 08:09
by magnetik
Yep but that's not something that is doable with a Debian package.
You can use symbolink link in your user directory indeed, but iif you share it among different users, they will all modify the same version of the files.
You can do a quite simple update script :
Code: Select all
#!/bin/bash
FILE="http://files.maniaplanet.com/ManiaPlanet2Beta/ManiaPlanetBetaServer_latest.zip"
wget $FILE -O ManiaPlanetBetaServer_latest.zip
unzip ManiaPlanetBetaServer_latest.zip -d /home/USERNAME/maniaplanetserver/
rm ManiaPlanetBetaServer_latest.zip
Re: ManiaPlanet APT (Debian/Ubuntu) repository
Posted: 19 Aug 2013, 17:49
by ubbe
Thanks.

But that would overwrite all the config-files etc too right?
I was thinking I should try symlinks, but I will run several instances of MP.
Could link to different start-scripts I guess? That points to different config-files...