diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2005-04-25 09:05:26 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2005-04-25 09:05:26 +0000 |
commit | 8f62b7c0202650beea4f9137078574ae35ff0e11 (patch) | |
tree | 9093e65234483c3501366c7696c42c132e9eabe1 /misc/zaptel/files/zaptel.sh | |
parent | Remove PORTREVISION (diff) |
Make sure zaptel module loaded first and unloaded last, since all other
modules depend on it. Bump PORTREVISION.
Submitted by: Ryan J. Taylor <rj@rjt.org>
Diffstat (limited to '')
-rw-r--r-- | misc/zaptel/files/zaptel.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/zaptel/files/zaptel.sh b/misc/zaptel/files/zaptel.sh index d2f5e60b61fc..e2ccf1e7a6a8 100644 --- a/misc/zaptel/files/zaptel.sh +++ b/misc/zaptel/files/zaptel.sh @@ -5,8 +5,8 @@ LIBDIR=${PREFIX}/lib/zaptel case "$1" in start) - /sbin/kldload ${LIBDIR}/qozap.ko || exit 1 /sbin/kldload ${LIBDIR}/zaptel.ko || exit 1 + /sbin/kldload ${LIBDIR}/qozap.ko || exit 1 /sbin/kldload ${LIBDIR}/wcfxo.ko || exit 1 /sbin/kldload ${LIBDIR}/wcfxs.ko || exit 1 /sbin/kldload ${LIBDIR}/wct1xxp.ko || exit 1 @@ -19,10 +19,10 @@ case "$1" in /sbin/kldunload qozap.ko || exit 1 /sbin/kldunload wcfxs.ko || exit 1 /sbin/kldunload wcfxo.ko || exit 1 - /sbin/kldunload zaptel.ko || exit 1 /sbin/kldunload wct1xxp.ko || exit 1 /sbin/kldunload wct4xxp.ko || exit 1 /sbin/kldunload wcte11xp.ko || exit 1 + /sbin/kldunload zaptel.ko || exit 1 echo -n " zaptel" ;; |