806684df0da1610339df7459e353ffd600a99492
[kernel-cn.git] / debian / postinst
1 #!/bin/sh
2 # postinst script for kernel-2.6-cn
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 # summary of how this script can be called:
9 #        * <postinst> `configure' <most-recently-configured-version>
10 #        * <old-postinst> `abort-upgrade' <new version>
11 #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
12 #          <new-version>
13 #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
14 #          <failed-install-package> <version> `removing'
15 #          <conflicting-package> <version>
16 # for details, see http://www.debian.org/doc/debian-policy/ or
17 # the debian-policy package
18 #
19
20 case "$1" in
21     configure|reconfigure)
22       # continue below
23     ;;
24
25     *)
26         exit 0
27     ;;
28 esac
29
30 # Source debconf library.
31 . /usr/share/debconf/confmodule
32
33 # import CN-functions
34 . /usr/share/carnet-tools/functions.sh
35
36 # import GRUB helper functions
37 . /usr/share/kernel-2.6-cn/grub-functions.sh
38
39 ################################################################################
40
41 # starting up backup
42 echo -n "CN: Backed up to /var/backups:"
43
44 # backup lilo.conf
45 if [ -e /etc/lilo.conf ]; then
46     cp_backup_conffile /etc/lilo.conf
47     echo -n " lilo.conf"
48 fi
49
50 # backup old kernel params
51 if [ -e /etc/sysctl.conf ]; then
52     cp_backup_conffile /etc/sysctl.conf
53     echo -n " sysctl.conf"
54 fi
55
56 # backup old kernel params
57 if [ -e /etc/kernel-img.conf ]; then
58     cp_backup_conffile /etc/kernel-img.conf
59     echo -n " kernel-img.conf"
60 fi
61
62 # finished
63 echo "."
64
65 ################################################################################
66
67 # remove obsolete symlinks and kernels
68 rm -f /boot/vmlinuz /boot/vmlinuz.old /boot/vmlinuz.old2 \
69     /boot/vmlinuz.plain /vmlinuz /vmlinuz.old /boot/vmlinuz.plain \
70     /boot/vmlinuz.generic /boot/vmlinuz-generic /boot/vmlinuz-old
71 echo "CN: Removed old symlinks in / and /boot."
72
73 ################################################################################
74
75 DIVERT_TO="grub grub-probe"
76
77 echo -n "CN: Undiverting binaries if necessary:"
78 for i in $DIVERT_TO; do
79     if [ -e /usr/sbin/$i.real ]; then
80             dpkg-divert --remove --rename --package 'kernel-2.6-cn' \
81                 --divert /usr/sbin/$i.real /usr/sbin/$i >/dev/null
82         echo -n " $i"
83     fi
84 done
85 echo "."
86
87 ################################################################################
88
89 # detect existing Grub2 installation
90
91 GRUB2="no"
92 if [ -e /boot/grub/grub.cfg ]; then
93     echo "CN: Detected GRUB2 installation, will try to use it."
94     GRUB2="yes"
95     if [ -e /boot/grub/menu.lst ]; then
96         echo "CN: Oops, GRUB1 (Legacy) installation detected. Will try to upgrade to GRUB2."
97     fi
98 else
99     echo "CN: No GRUB2 detected, will continue with GRUB1 as default option."
100 fi
101
102 ################################################################################
103
104 # intro msg
105 echo -n "CN: Configuring system (this will take a while):"
106
107 # generate kernel-img.conf
108 if [ ! -e /etc/kernel-img.conf ]; then
109     touch /etc/kernel-img.conf
110 fi
111
112 # update postinst_hook for grub/grub2
113 if grep -q postinst_hook /etc/kernel-img.conf; then
114     cp_check_and_sed '^postinst_hook' \
115         's;^postinst_hook[[:blank:]]*=.*;postinst_hook = /usr/sbin/update-grub;g' \
116         /etc/kernel-img.conf || true
117 else
118     echo "postinst_hook = /usr/sbin/update-grub" >> /etc/kernel-img.conf
119 fi
120
121 # update postrm_hook for grub/grub2
122 if grep -q postrm_hook /etc/kernel-img.conf; then
123     cp_check_and_sed '^postrm_hook' \
124         's;^postrm_hook[[:blank:]]*=.*;postrm_hook = /usr/sbin/update-grub;g' \
125         /etc/kernel-img.conf || true
126 else
127     echo "postrm_hook = /usr/sbin/update-grub" >> /etc/kernel-img.conf
128 fi
129
130 # enable initrd
131 if grep -q do_initrd /etc/kernel-img.conf; then
132     cp_check_and_sed '^do_initrd' \
133         's/^do_initrd[[:blank:]]*=.*/do_initrd = yes/g' \
134         /etc/kernel-img.conf || true
135 else
136     echo "do_initrd = yes" >> /etc/kernel-img.conf
137 fi
138
139 echo -n " kernel-img.conf"
140
141 # generate initial grub loaders
142 if [ "x$GRUB2" = "xno" ]; then
143     # Grub1 part
144     if [ ! -d "$grub_dir" ]; then
145         mkdir -p "$grub_dir"
146         # x86
147         if [ -d /usr/lib/grub/i386-pc ]; then
148             cp -a /usr/lib/grub/i386-pc/* "$grub_dir"
149         # x86_64
150         elif [ -d /usr/lib/grub/x86_64-pc ]; then
151             cp -a /usr/lib/grub/x86_64-pc/* "$grub_dir"
152         fi
153     fi
154 else
155     # Grub2 part
156     if [ ! -d /boot/grub ]; then
157         mkdir -p /boot/grub
158         if [ -d /usr/lib/grub/i386-pc ]; then
159             cp -a /usr/lib/grub/i386-pc/* /boot/grub
160         fi
161     fi
162 fi
163 echo -n " grub1"
164
165 # create/update grub configuration
166 if [ "x$GRUB2" = "xno" ]; then
167     # Grub1 part
168     if [ -e "$menu_file" ]; then
169         # is there uncompatibile grub conf present?
170         if ! grep -q 'AUTOMAGIC KERNELS LIST' "$menu_file"; then
171             mv -f "$menu_file" "$menu_file.old"
172         fi
173     fi
174     if [ ! -e "$menu_file" ]; then
175         yes | update-grub >/dev/null 2>&1 || true
176     else
177         update-grub >/dev/null 2>&1 || true
178     fi
179 else
180     # Grub2 part
181     update-grub >/dev/null 2>&1 || true
182 fi
183 echo -n " grub2"
184
185 # workaround grsec
186 if uname -a | grep -q grsec; then
187     if [ -x /sbin/chpax ]; then
188         # grub
189         if [ -x /usr/sbin/grub.real ]; then
190             chpax -spmrx /usr/sbin/grub.real >/dev/null 2>&1 || true
191         elif [ -x /usr/sbin/grub ]; then
192             chpax -spmrx /usr/sbin/grub >/dev/null 2>&1 || true
193         fi
194
195         # grub-probe
196         if [ -x /usr/sbin/grub-probe.real ]; then
197             chpax -spmrx /usr/sbin/grub-probe.real >/dev/null 2>&1 || true
198         elif [ -x /usr/sbin/grub-probe ]; then
199             chpax -spmrx /usr/sbin/grub-probe >/dev/null 2>&1 || true
200         fi
201
202         echo -n " grsec"
203     fi
204 fi
205
206 # remove obsolete devfs/compat links and restore normal udev behaviour
207 rm -f /etc/udev/rules.d/devfs.rules /etc/udev/rules.d/compat.rules \
208     /etc/udev/rules.d/compat-full.rules
209 #if [ ! -e /etc/udev/rules.d/udev.rules ]; then
210 #    ln -s ../udev.rules /etc/udev/rules.d/udev.rules
211 #fi
212 udevadm control --reload_rules >/dev/null 2>&1 || true
213 udevadm settle || true
214 echo -n " udev"
215
216 # update device map if possible
217 if [ "x$GRUB2" = "xno" ]; then
218     # Grub1 part
219     if [ -f "$device_map" ]; then
220         mv -f "$device_map" "$device_map.old"
221     fi
222     grub --batch --no-floppy --device-map="$device_map" <<'EOF' >/dev/null 2>&1
223 quit
224 EOF
225     if [ ! -s "$device_map" ]; then
226         if [ -f "$device_map.old" ]; then
227             mv -f "$device_map.old" "$device_map"
228         fi
229
230     else
231         rm -f "$device_map.old"
232     fi
233 else
234     # Grub2 part
235     grub-mkdevicemap -n
236 fi
237 echo -n " grub3"
238
239 # import GRUB helper functions (again, updated device map)
240 . /usr/share/kernel-2.6-cn/grub-functions.sh
241
242 # get install device (0x80 BIOS device)
243 # this will work for both Grub1 and Grub2
244 if [ "x$GRUB2" = "xyes" ]; then
245     device_map=/boot/grub/device.map
246 fi
247 install_device=$(grep '^(hd0)' "$device_map" | \
248     sed -e 's%[^[:space:]]*[[:space:]]*\([^[:space:]]*\)%\1%')
249 if [ -z "$install_device" ]; then
250     echo "."
251     echo "CN: FATAL ERROR while detecting boot disk!"
252     echo "CN: Do not reboot your server and report this to OTRS immediately!"
253     exit 1
254 fi
255
256 # oops, install device is a symlink...
257 if [ -h "$install_device" ]; then
258     install_device_resolved=$(resolve_symlink "$install_device")
259     if [ -z "$install_device_resolved" ]; then
260         install_device_resolved="$install_device"
261     fi
262
263     # try to fix device map with symlink resolved device
264     if [ "x$install_device_resolved" != "x$install_device" ]; then
265         cp_check_and_sed '^\(hd0\)' \
266             "s;^(hd0).*;(hd0)   $install_device_resolved;" "$device_map" \
267             || true
268     fi
269 fi
270 echo -n " grub4"
271
272 # install GRUB loader
273 # this will work for both Grub1 and Grub2
274 if ! grub-install --no-floppy "$install_device" >/dev/null 2>&1; then
275     echo "."
276     echo "CN: FATAL ERROR while running grub-install on $install_device!"
277     echo "CN: Do not reboot your server and report this to OTRS immediately!"
278     exit 1
279 fi
280 echo -n " grub5"
281
282 # fix possible wrong params in menu.lst
283 if [ "x$GRUB2" = "xno" ]; then
284     # Grub1 part
285     cp_check_and_sed '^# groot=' \
286       "s;^# groot=.*;# groot=$grub_root_device;g" \
287           "$menu_file" || true
288     cp_check_and_sed '^# kopt=' \
289       "s;^# kopt=\(.*\)root=[^[:space:]]*\(.*\);# kopt=\1root=$root_device\2;g" \
290           "$menu_file" || true
291 fi
292 update-grub >/dev/null 2>&1 || true
293 echo -n " grub6"
294
295 # fix possible wrong params in menu.lst
296 if [ "x$GRUB2" = "xno" ]; then
297     # Grub1 part
298     # ... and final stage of devfs/udev brokeness fix
299     if [ "x$install_device_resolved" != "x$install_device" ]; then
300         # get original (symlinked device)
301         root_device=$(find_device_nonresolved "/")
302         if [ -z "$root_device" ]; then
303             root_device=$(find_root_device)
304         fi
305
306         # fix (hd0) mapping
307         cp_check_and_sed '^\(hd0\)' \
308             "s;^(hd0).*;(hd0)   $install_device;" "$device_map" \
309             || true
310
311         # fix global root= invocation
312         cp_check_and_sed '^# kopt=' \
313           "s;^# kopt=\(.*\)root=[^[:space:]]*\(.*\);# kopt=\1root=$root_device\2;g" \
314               "$menu_file" || true
315
316         # fix root= invocation for individual kernel profiles
317         cp_check_and_sed '^kernel' \
318           "s;\(^kernel.*\)root=[^[:space:]]*\(.*\);\1root=$root_device\2;g" \
319               "$menu_file" || true
320     fi
321 fi
322 echo -n " grub7"
323
324 # disable lilo
325 if [ -e /etc/lilo.conf ]; then
326     mv -f /etc/lilo.conf /etc/lilo.conf.old
327     echo -n " lilo"
328 fi
329
330 # mdadm
331 if [ -x /usr/share/mdadm/mkconf ]; then
332     if [ ! -e /etc/mdadm/mdadm.conf ]; then
333         touch /etc/mdadm/mdadm.conf
334     fi
335
336     /usr/share/mdadm/mkconf > /etc/mdadm/mdadm.conf.$$
337     if ! cmp -s /etc/mdadm/mdadm.conf.$$ /etc/mdadm/mdadm.conf; then
338         mv /etc/mdadm/mdadm.conf.$$ /etc/mdadm/mdadm.conf
339     fi
340     rm -f /etc/mdadm/mdadm.conf.$$ /etc/initramfs-tools/hooks/md \
341         /var/lib/mdadm/CONF-UNCHECKED
342     echo -n " mdadm"
343 fi
344
345 # update initramfs accordingly (because of mdadm and udev)
346 update-initramfs -u -k all >/dev/null 2>&1 || true
347 echo -n " initramfs"
348
349 # finished
350 echo "."
351
352 ################################################################################
353
354 # rest of configuration...
355 echo -n "CN: Modifying the neccessary system files:"
356
357 # remove group 99
358 if getent group proc >/dev/null 2>&1; then
359     groupdel proc >/dev/null 2>&1
360     echo -n " proc"
361 fi
362
363 # remove oidentd from oident group
364 if getent group oident >/dev/null 2>&1; then
365     # sarge default
366     cp_check_and_sed '^OIDENT_GROUP[[:blank:]]*=[[:blank:]]*nogroup' \
367       's/^OIDENT_GROUP[[:blank:]]*=[[:blank:]]*nogroup/OIDENT_GROUP=oident/g' \
368           /etc/default/oidentd || true
369
370     # old kernel-2.6-cn default
371     cp_check_and_sed '^OIDENT_GROUP[[:blank:]]*=[[:blank:]]*proc' \
372       's/^OIDENT_GROUP[[:blank:]]*=[[:blank:]]*proc/OIDENT_GROUP=oident/g' \
373           /etc/default/oidentd || true
374
375     echo -n " oidentd"
376 fi
377
378 # default kernel parameters
379 rm -f /etc/sysctl.conf.$$
380
381 # old kernel params (skipping some of the obsolete or overrided entries)
382 if [ -e /etc/sysctl.conf ]; then
383     egrep -v 'net\.core\.(r|w)mem_max|net\.ipv4\.tcp_(r|w)mem|vm\.bdflush|net\.ipv4\.ip_local_port_range|kernel\.rtsig-max|net\.ipv4\.tcp_syncookies|kernel\.exec-shield|net\.ipv4\.tcp_max_syn_backlog|net\.ipv4\.tcp_congestion_control|kernel\.exec-shield' \
384         /etc/sysctl.conf >> /etc/sysctl.conf.$$
385 fi
386
387 # finished with merging, move into sysctl.conf
388 cp_mv /etc/sysctl.conf.$$ /etc/sysctl.conf
389 echo -n " sysctl.conf"
390
391 # finished with basic kernel-2.6-cn stuff
392 echo "."
393
394 ################################################################################
395
396 # intro
397 echo -n "CN: Setting up PAM configurations:"
398
399 # update pam_limits accordingly
400 if [ -e /etc/security/limits.conf ]; then
401     rm -f /etc/security/limits.conf.$$
402     cp /etc/security/limits.conf /etc/security/limits.conf.$$
403     cp-update kernel-2.6-cn /etc/security/limits.conf.$$ <<'EOF'
404 *       soft    core        0
405 *               hard    nofile          16384
406 *               soft    nofile          16384
407 @users  soft    nproc       100
408 @users  hard    nproc       150
409 EOF
410     cp_mv /etc/security/limits.conf.$$ /etc/security/limits.conf
411     echo -n " limits"
412 fi
413
414 # check pam.d/login
415 if [ -e /etc/pam.d/login ]; then
416     cp_check_and_sed '^#.*session.+required.+pam_limits.so' \
417         's/^#.*session.+required.+pam_limits.so/session required pam_limits.so/' \
418         /etc/pam.d/login || true
419     echo -n " login"
420 fi
421
422 # check pam.d/ssh
423 if [ -e /etc/pam.d/ssh ]; then
424     cp_check_and_sed '^#.*session.+required.+pam_limits.so' \
425         's/^#.*session.+required.+pam_limits.so/session required pam_limits.so/' \
426         /etc/pam.d/ssh || true
427     echo -n " ssh"
428 fi
429
430 # finished with PAM
431 echo "."
432
433 ################################################################################
434
435 # fix old kernel-2.4-cn postrm
436 if [ -e /var/lib/dpkg/info/kernel-2.4-cn.postrm ]; then
437     echo "CN: Fixed old kernel-2.4-cn postrm."
438     cat > /var/lib/dpkg/info/kernel-2.4-cn.postrm.$$ <<'EOF'
439 #!/bin/sh
440
441 set -e
442
443 # be sure, be safe
444 if [ "$1" != "remove" ]; then
445   exit 0
446 fi
447
448 # import CN-functions
449 . /usr/share/carnet-tools/functions.sh
450
451 # remove us from limits.conf
452 cp-update -r kernel-2.4-cn /etc/security/limits.conf
453
454 # remove us from modules
455 cp-update -r kernel-2.4-cn /etc/modules
456 EOF
457     if ! cmp -s /var/lib/dpkg/info/kernel-2.4-cn.postrm \
458         /var/lib/dpkg/info/kernel-2.4-cn.postrm.$$; then
459         mv /var/lib/dpkg/info/kernel-2.4-cn.postrm.$$ \
460             /var/lib/dpkg/info/kernel-2.4-cn.postrm
461         chmod +x /var/lib/dpkg/info/kernel-2.4-cn.postrm
462     fi
463     rm -f /var/lib/dpkg/info/kernel-2.4-cn.postrm.$$
464 fi
465
466 ################################################################################
467
468 # fix old kernel-cn postrm
469 if [ -e /var/lib/dpkg/info/kernel-cn.postrm ]; then
470     echo "CN: Fixed old kernel-cn postrm."
471     cat > /var/lib/dpkg/info/kernel-cn.postrm.$$ <<'EOF'
472 #!/bin/sh
473
474 set -e
475
476 # be sure, be safe
477 if [ "$1" != "remove" ]; then
478   exit 0
479 fi
480
481 # import CN-functions
482 . /usr/share/carnet-tools/functions.sh
483
484 # remove us from limits.conf
485 cp-update -r kernel-cn /etc/security/limits.conf
486
487 # remove us from modules
488 cp-update -r kernel-cn /etc/modules
489 EOF
490     if ! cmp -s /var/lib/dpkg/info/kernel-cn.postrm \
491         /var/lib/dpkg/info/kernel-cn.postrm.$$; then
492         mv /var/lib/dpkg/info/kernel-cn.postrm.$$ \
493             /var/lib/dpkg/info/kernel-cn.postrm
494         chmod +x /var/lib/dpkg/info/kernel-cn.postrm
495     fi
496     rm -f /var/lib/dpkg/info/kernel-cn.postrm.$$
497 fi
498
499 ################################################################################
500
501 # dh_installdeb will replace this with shell code automatically
502 # generated by other debhelper scripts.
503
504 #DEBHELPER#
505
506 exit 0