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