blob: 1419f32719ddb97a5763171b4d441aa91b4b1827 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#!/bin/bash
#
# harddrake This scripts runs the harddrake hardware probe.
#
# chkconfig: 345 05 95
# description: This runs the hardware probe, and optionally configures \
# changed hardware.
#
### BEGIN INIT INFO
# Provides: harddrake
# X-Mandriva-Interactive
# Should-Start: pcmcia dkms
# Short-Description: The harddrake hardware probe
# Description: This runs the hardware probe, and optionally configures
# changed hardware.
### END INIT INFO
# This is an interactive program, we need the current locale
[[ -f /etc/profile.d/10lang.sh ]] && . /etc/profile.d/10lang.sh
# Source function library.
. /etc/rc.d/init.d/functions
SUBSYS=/var/lock/subsys/harddrake
case "$1" in
start)
# We (mdk) do not support updfstab (yet)
# action "Updating /etc/fstab" /usr/sbin/updfstab
gprintf "Checking for new hardware"
/usr/share/harddrake/service_harddrake 2>/dev/null
RETVAL=$?
if [ "$RETVAL" -eq 0 ]; then
action "" /bin/true
else
action "" /bin/false
fi
# We do not want to run this on random runlevel changes.
touch $SUBSYS
# [ /etc/modules.conf -nt /lib/modules/$(uname -r)/modules.dep ] && touch /lib/modules/$(uname -r)/modules.dep 2>/dev/null >/dev/null || : &
exit $RETVAL
;;
status)
if [ -f $SUBSYS ]; then
gprintf "Harddrake service was run at boot time"
else gprintf "Harddrake service was not run at boot time"
fi
echo
;;
reload|restart)
;;
stop)
# dummy
rm -f $SUBSYS
;;
*)
gprintf "Usage: %s {start|stop}\n" "$0"
exit 1
;;
esac
|