blob: aa5f618f6a723c145ebd2ecc8787fe340f110cf2 (
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
|
#!/bin/sh
start()
{
printf 'Enabling device hotplugging... '
printf '/sbin/mdev\n' >/proc/sys/kernel/hotplug
mdev -s
printf 'done.\n'
}
stop()
{
printf 'Disabling device hotplugging... '
printf '\n' >/proc/sys/kernel/hotplug
printf 'done.\n'
}
case "${1}" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
printf 'Usage: %s {start|stop|restart}\n' "${0}" >&2
exit 1
;;
esac
|