summaryrefslogtreecommitdiff
path: root/scripts/casper-bottom/31disable_update_notifier
blob: 082b818011539ff2dbd723ed44868872894bbf83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

PREREQ=""
DESCRIPTION="Disabling update-notifier..."

. /scripts/functions

prereqs()
{
       echo "$PREREQ"
}

case $1 in
# get pre-requisites
prereqs)
       prereqs
       exit 0
       ;;
esac

log_begin_msg "$DESCRIPTION"

rm -f /root/etc/xdg/autostart/update-notifier.desktop
rm -f /root/usr/share/autostart/adept_notifier_auto.desktop

log_end_msg