blob: bfcd8b37621021611b52baf70c3351bcb92e7c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
README.SLACKWARE for dahdi-complete
To start dahdi-complete at boot, add the following to /etc/rc.d/rc.local:
if [ -x /etc/rc.d/rc.dahdi ]; then
/etc/rc.d/rc.dahdi start
fi
This goes in /etc/rc.d/rc.local_shutdown:
if [ -x /etc/rc.d/rc.dahdi ]; then
/etc/rc.d/rc.dahdi stop
fi
|