update upgrade howto for buildds
[mirror/dsa-wiki.git] / input / howto / upgrade-to-wheezy.mdwn
1
2 # Upgrade from squeeze to wheezy
3
4 Make sure to coordinate with whoever uses the host, be it the buildd
5 operator, the QA team, the ftp team or just announce it if it's a
6 general developer box.
7
8 on buildds:
9
10         cd ~buildd
11         sudo su - buildd
12         touch NO-DAEMON-PLEASE EXIT-DAEMON-PLEASE && exit
13
14         now wait for the buildd to quit
15
16 upgrade stuff:
17
18 * answer question to libc6 "Restart services automaticaly" with "yes"
19 * answer "Yes" to changes of /etc/default/rcS, [BR#694928](http://bugs.debian.org/694928)
20 * and change "FSCKFIX=yes" afterwards, at least on hardware without remote access (like arm*)
21 * say no to other other questions.
22
23 commands:
24
25         sed -i "s#squeeze#wheezy#g" /etc/apt/sources.list.d/debian.list /etc/apt/sources.list.d/security.list &&
26         rm -f /etc/apt/preferences.d/dsa-bacula-client &&
27         if [ -e /etc/apt/preferences.d/buildd ]; then
28                 rm -f /etc/apt/preferences.d/buildd &&
29                 sed -i "s#squeeze#wheezy#g" /etc/apt/sources.list.d/buildd.debian.org.list
30         fi &&
31         apt-get update &&
32         apt-get install dpkg apt samhain &&
33         service samhain stop &&
34         apt-get dist-upgrade &&
35         rm /var/state/samhain/samhain_file &&
36         samhain --foreground -t init -p none -s none -l none -m none &&
37         (puppet agent -t || true) &&
38         apt-get dist-upgrade &&
39         c_rehash /etc/ssl/debian/certs &&
40         c_rehash /etc/exim4/ssl &&
41         apt-get --purge autoremove &&
42         while [ "$(deborphan -n | wc -l)" -gt 0 ] ; do apt-get purge $(deborphan -n); done &&
43         apt-get purge liblzma2 lzma &&
44         apt-get clean
45
46
47 if /etc/apache2/apache2.conf was not changed, remove the include for httpd.conf.
48
49 purge removed packages
50         dpkg --get-selections | awk '$2=="deinstall" {print $1}' &&
51         echo "really purge these [y/N]?" && read ans && [ "$ans" = "y" ] && dpkg --purge `dpkg --get-selections | awk '$2=="deinstall" {print $1}'` &&
52         echo "These are not at install:" && dpkg --get-selections | awk '$2!="install" {print $1}'
53
54 more clean ups:
55
56         /usr/lib/nagios/plugins/dsa-check-packages | tr -d ,
57         apt-get --purge autoremove
58
59 maybe
60         apt-get install firmware-linux
61
62 update dsa-nagios.git (add host to wheezy hostgroup)
63
64 reboot
65
66 verify ipv6 routing still works.
67
68 re-init samhain
69
70         samhain --foreground -t update -p none -s none -l none -m none