#!/bin/sh if [ "$PROG" = "suspend" ]; then /etc/rc.d/init.d/pcmcia stop /etc/rc.d/init.d/network stop fi if [ "$PROG" = "resume" ]; then # No beep! CARDMGR_QUIET=-q # actually not needed because i hacked pcmcia script. export CARDMGR_QUIET /etc/rc.d/init.d/network start /etc/rc.d/init.d/pcmcia start fi