Adding live-initramfs 1.87.4-1.
[live-boot-grml.git] / scripts / live-bottom / 31disable_update_notifier
1 #!/bin/sh
2
3 #set -e
4
5 # initramfs-tools header
6
7 PREREQ=""
8
9 prereqs()
10 {
11         echo "${PREREQ}"
12 }
13
14 case "${1}" in
15         prereqs)
16                 prereqs
17                 exit 0
18                 ;;
19 esac
20
21 # live-initramfs header
22
23 . /scripts/live-functions
24
25 log_begin_msg "Disabling update-notifier..."
26
27 # live-initramfs script
28
29 # For GNOME, we divert away apt-check to avoid a regular 'apt-get update'
30 # equivalent in the live session. We want to run update-notifier for crash
31 # report handling.
32 chroot /root dpkg-divert --add --rename --quiet \
33         /usr/lib/update-notifier/apt-check
34 ln -s /bin/true /root/usr/lib/update-notifier/apt-check
35
36 # For KDE, adept_notifier's only useful function at the moment is an
37 # 'apt-get update' equivalent, so we disable it entirely.
38 rm -f /root/usr/share/autostart/adept_notifier_auto.desktop
39
40 log_end_msg