5a54701f595c730c23ba36656bf06d7fcc530b2f
[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         apt-get update &&
27         apt-get install dpkg apt samhain &&
28         service samhain stop &&
29         apt-get dist-upgrade &&
30         rm /var/state/samhain/samhain_file &&
31         samhain --foreground -t init -p none -s none -l none -m none &&
32         (puppet agent -t || true) &&
33         apt-get dist-upgrade &&
34         c_rehash /etc/ssl/debian/certs &&
35         c_rehash /etc/exim4/ssl &&
36         apt-get --purge autoremove &&
37         while [ "$(deborphan -n | wc -l)" -gt 0 ] ; do apt-get purge $(deborphan -n); done &&
38         apt-get purge liblzma2 lzma &&
39         apt-get clean
40
41
42 if /etc/apache2/apache2.conf was not changed, remove the include for httpd.conf.
43
44 purge removed packages
45         dpkg --get-selections | awk '$2=="deinstall" {print $1}' &&
46         echo "really purge these [y/N]?" && read ans && [ "$ans" = "y" ] && dpkg --purge `dpkg --get-selections | awk '$2=="deinstall" {print $1}'` &&
47         echo "These are not at install:" && dpkg --get-selections | awk '$2!="install" {print $1}'
48
49 more clean ups:
50
51         /usr/lib/nagios/plugins/dsa-check-packages | tr -d ,
52         apt-get --purge autoremove
53
54 update dsa-nagios.git (add host to wheezy hostgroup)
55
56 re-init samhain
57
58         samhain --foreground -t update -p none -s none -l none -m none
59
60 possibly reboot