#!/bin/sh
if [ -x /etc/init.d/pcmcia ] ; then
    if which invoke-rc.d >/dev/null 2>&1; then
	invoke-rc.d pcmcia stop
    else
	/etc/init.d/pcmcia stop
    fi
fi

