#!/bin/sh

#echo apmcontinue: $PROG, "$@" >/tmp/dmk/apm-test

if [ "$PROG" = "suspend" ]; then
    /etc/init.d/pcmcia stop
fi
if [ "$PROG" = "resume" ]; then
    # No beep!
    CARDMGR_QUIET=-q
    export CARDMGR_QUIET
    /etc/init.d/pcmcia start
fi
