summaryrefslogtreecommitdiff
path: root/scripts/live-bottom/38jockey_disable_check
blob: 1a642e195fef20bd595a993cc39e17d68bab8623 (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
27
28
29
#!/bin/sh

PREREQ=""

prereqs()
{
       echo "$PREREQ"
}

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

if [ -n "${NOJOCKEY}" ]
then
	exit 0
fi

. /scripts/live-functions

log_begin_msg "Disabling jockey driver check"

rm -f /root/etc/xdg/autostart/jockey*.desktop

log_end_msg