How often do you update software on your servers?

https://discuss.tchncs.de/post/47841853

How often do you update software on your servers? - tchncs

Or asked the other way around: How long do you keep your servers running without installing any software updates? update means something like sudo dnf update or something … apt-get upgrade apt-get update

On Alpine Linux I update my two Pi servers at 2 in the morning daily. It’s simpler compared to Debian which needs unattended-updates. Just add apk update && apk upgrade to a cron job and you’re good to go.

I only have three docker services which is simple enough to update manually.

I like to keep things as simple as possible for my already chaotic brain.

To make it even simpler, apk -U upgrade

apk seems to have some tricks in there that aren’t as well known.

I managed to catch in the IRC channel that apk add doc will automatically download any related man pages for packages with any future downloads through apk. That made life a bit more convenient instead of downloading all those packages separately.