I have a script that updates all servers in the domain. I first review all updates that are to be installed and then run the script. Prior to KeyCloak, this would simply run through all the servers in a particular order and update them. KeyCloak breaks this everytime. And it seems that every update comes with a KeyCloak update as well. Is there something I can add to my script to make this script-friendly?
Hi @maxTim
could you show us your script? ![]()
It’s not terribly complicated…
clear
echo ~~ UCS Central ~~~
sudo univention-upgrade --non-interactive
clear
echo ~~ UCS Backup ~~~
ssh ucs-backup -t "sudo univention-upgrade --non-interactive"
clear
echo ~~~ Member Server 1 ~~~
ssh ucs-mem1 -t "sudo univention-upgrade --non-interactive"
so on and so forth.