diff options
Diffstat (limited to 'net-dialup/isdn4k-utils/files/isdn.pcmcia')
-rw-r--r-- | net-dialup/isdn4k-utils/files/isdn.pcmcia | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net-dialup/isdn4k-utils/files/isdn.pcmcia b/net-dialup/isdn4k-utils/files/isdn.pcmcia new file mode 100644 index 0000000..faf1c25 --- /dev/null +++ b/net-dialup/isdn4k-utils/files/isdn.pcmcia @@ -0,0 +1,22 @@ +#!/bin/bash +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/files/isdn.pcmcia,v 1.1 2005/09/03 20:56:26 sbriesen Exp $ + +. /etc/pcmcia/shared +. /etc/conf.d/isdn + +# Syslog output +syslog() { # <msg> + /usr/bin/logger -t "isdn-pcmcia" "$@" +} + +case "${ACTION}" in + start) + # create ISDN devices if necessary + [ -c /dev/isdninfo -a -c /dev/isdnctrl0 ] || /etc/init.d/isdn makedev + ;; + stop) + ;; +esac +exit 0 |