aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/init.d/rc.mandrake.zaptel
blob: 731d9c37976b250397e6217fc744188cdf5c7b04 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/sh
#
# zaptel:       Loads Asterisk modules
#
# Version:      @(#) /etc/rc.d/init.d/zaptel 1.0
#
# chkconfig: 2345 90 10
# description: Loads and unloads zaptel modules at boot time and shutdown.
#
# hide: true

# Source function library.
. /etc/rc.d/init.d/functions

######################################
#   CONFIGURE ME !!!
######################################
MODULES="usb-uhci zaptel wcfxo wcusb"
######################################

function probe() {
	gprintf "                           $1"
	modprobe $1
	# It has to be in the module list, otherwise something is wrong
	if lsmod | grep -c ^$1 >/dev/null; then
		success
	else
		failure
	fi
	echo
}

function unprobe() {
	gprintf "                           $1"
	rmmod $1 >/dev/null 2>&1
	# If it's still in the module list after removing it, there's something wrong.
	if lsmod | grep -c ^$1 >/dev/null; then
		failure
	else
		success
	fi
	echo
}

function reverse_modules() {
	tmp=$MODULES
	MODULES=''
	for i in $tmp; do
		MODULES="$i $MODULES" ;
	done
}

# See how we were called.
case "$1" in
  start)
	gprintf "Loading Asterisk modules:\n"
	for i in $MODULES; do
		probe $i
		usleep 100000 ;
	done
	ztcfg
	;;
  stop)
	gprintf "Unloading Asterisk modules:\n"
	reverse_modules
	for i in $MODULES; do
		unprobe $i
		usleep 100000 ;
	done
	;;
  status)
  	ztcfg -vv
	;;
  restart)
  	$0 stop
	$0 start
	;;
  *)
	gprintf "*** Usage: $0 {start|stop|status|restart}\n"
	exit 1
esac

exit 0