OS Upgrade » History » Revision 20
Revision 19 (Marc Dequènes, 2023-06-29 02:37) → Revision 20/28 (Marc Dequènes, 2023-06-29 03:04)
h1. OS Upgrade This is a list of steps as guidelines for OS upgrades. * review APT pinnings in Ansible * create a temporary _group_vars/<new-suite>/system.yml_ in a git branch: <pre> --- system: distribution: debian: codename: bookworm dc: codename: bookworm </pre> * check if there other places where the old suite name is used and update them * (I often choose Elwing first) ansible-playbook --diff -l Elwing -t apt playbooks/common.yml | tee /tmp/dc.log * run selected playbooks that update pinnings and the other suite names * apt upgrade * apt full-upgrade (check if removed packages are problematic) ** accept new version of: *** /etc/services and copy-paste content of _local services_ from _/etc/services.dpkg-old_ to avoid having to redeploy all services *** /etc/grub.d/10_linux but see warning below *** /etc/ssh/ssh_config (we use ssh_config.d in Ansible now) BUT NOT sshd_config! ** do not accept new versions for: *** /etc/apt-cacher-ng/acng.conf /etc/smartd.conf *** /etc/logrotate.d/* /etc/snmp/snmp.conf *** /etc/oidentd.conf *** /etc/sudoers *** /etc/rsyslog.conf *** /etc/smartd.conf /etc/apt-cacher-ng/acng.conf *** /etc/snmp/snmp.conf /etc/zabbix/* *** /etc/sudoers /etc/logrotate.d/* ** check the diff manually for other files * if PHP FPM: (to avoid having to redeploy all vhosts) (example for PHP 7.4->8.2) ** rm /etc/php/8.2/fpm/pool.d/www.conf ** cp /etc/php/7.4/fpm/pool.d/* /etc/php/8.2/fpm/pool.d/ ** sed -i 's/7\.4/8.2/g' /etc/php/8.2/fpm/pool.d/* ** systemctl restart php8.2-fpm.service ** sed -i 's/7\.4/8.2/g' /etc/apache2/sites-enabled/*.conf.d/php.conf ** systemctl restart apache2 ** purge facts_cache/<host> before running Ansible to detect the new major version ** run common web playbook _playbooks/tenants/duckcorp/web.yml_ with _-t web-common_ * run the _playbooks/common.yml_ playbook * on MX1 servers, run the _playbooks/tenants/duckcorp/mail.yml_ playbook with _-t antispam_ (to switch the Rspamd repo to the new suite) * run the _playbooks/tenants/duckcorp/accounts.yml_ playbook It is critical that the common playbook is run successfully before rebooting. Especially _/etc/grub.d/10_linux_ must contain the _--unrestricted_ option and the GRUB config must be regenerated or the server will block at the GRUB screen waiting for a login. * reboot * check failed services: systemctl --failed