start of upgrade to squeeze page
[mirror/dsa-wiki.git] / input / howto / upgrade-to-squeeze.mdwn
1
2 # Upgrade from lenny to squeeze
3
4 turn off samhain
5
6         /etc/init.d/samhain stop
7
8
9 maybe turn off exim
10
11         /etc/init.d/exim4 stop
12         mv /etc/rc2.d/S20exim4 /etc/rc2.d/K20exim4 # so it stays down
13
14
15 install deborphan, clean up
16
17         apt-get install deborphan dialog
18         orphaner
19         orphaner -n
20         orphaner -a
21         orphaner -a -n
22
23
24 purge removed packages
25
26         dpkg --get-selections | awk '$2!="install" {print $1}'
27         echo "really purge these [y/N]?"; read ans; [ "$ans" = "y" ] && dpkg --purge `dpkg --get-selections | awk '$2!="install" {print $1}'`
28
29 update dsa-puppet.git (add to squeeze list in local.yaml)
30
31 do a puppet run:
32         puppetd -t
33
34
35 change sources list entries to squeeze:
36
37         mirror=`cat /etc/apt/sources.list.d/debian.list | awk '/debian/ {print $2; exit}'`
38         echo "Mirror is $mirror"; echo "Fix stuff if this seems wrong"; echo "XXXXXXXXXXXXXXXXXXXXXXX"
39         echo "## VERIFY THE MIRROR IS CORRECT ##"; read
40
41
42 write new sources.list.d/ entries:
43
44         cd /etc/apt/sources.list.d && sed -i "s#lenny#squeeze#g" > debian.list
45
46 update apt list
47
48         apt-get update
49
50
51 upgrade
52
53         apt-get install locales-all
54
55
56 rest follows
57
58         apt-get dist-upgrade
59
60
61 reject changes to /etc/pam.d/sudo (puppet will install a new file later anyway)
62
63 reject changes to /etc/munin/plugin-conf.d/munin-node (puppet will install a new file later anyway)
64
65  * keep local (i.e. reject (N)):
66   * all changes relating to exim  (in /etc/exim4 and in logrotate)
67   * /etc/ldap/ldap.conf
68   * /etc/nagios/nrpe.cfg
69   * /etc/samhain/samhainrc
70   * /etc/munin/munin-node.conf
71   * /etc/logrotate.d/apache2
72   * /etc/apache2/apache2.conf
73   * /etc/apache2/ports.conf
74
75 update nagios.git (add host to squeeze hostgroup)
76
77 check for obsolete packages
78
79         /usr/lib/nagios/plugins/dsa-check-packages
80
81 clean up old libs
82
83         orphaner
84         orphaner -n
85         orphaner -a
86         orphaner -a -n
87
88
89 purge removed packages
90
91         dpkg --get-selections | awk '$2!="install" {print $1}'
92         echo "really purge these [y/N]?"; read ans; [ "$ans" = "y" ] && dpkg --purge `dpkg --get-selections | awk '$2!="install" {print $1}'`
93
94 possibly reboot
95
96 re-enable exim
97
98         mv /etc/rc2.d/K20exim4 /etc/rc2.d/S20exim4
99         env -i /etc/init.d/exim4 start