Do any of you have that one service that just breaks constantly? I'd love to love Nextcloud, but it sure makes that difficult at times

atmur@lemmy.world to Selfhosted@lemmy.world – 966 points –
187

You are viewing a single comment

Would love to take a look at that bash script (or at least a template of it) if you wouldn't mind

Here you go:

https://pastebin.com/f5tL7xwx

There could probably be some additional refactoring here, but it works for my setup. I'm using default nginx paths, so they probably look different than other installs that use custom stuff like /var/www, etc.

Use it by putting it in a shell script, make it executable, then call it:

sudo scriptName.sh 28.0.1

Replace the version with whatever version you're upgrading to. I would highly recommend never upgrading to a .0, always wait for at least a .1 patch. I left some sleeps in the when I was debugging a while back, those are safe to remove assuming it works in your setup. I also noticed some variables weren't quoted, I'm not a bash programmer so there's probably some consistency issues that could be addressed if someone is OCD.

Thank you for taking the time ! This is a great resource