1999-07-10 18:02:42 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1999-07-10 18:02:42 +00:00
|
|
|
#
|
|
|
|
# sample run command file for APM Resume Event
|
|
|
|
|
1999-09-13 15:44:20 +00:00
|
|
|
if [ -r /var/run/rc.suspend.pid ]; then
|
1999-07-10 18:02:42 +00:00
|
|
|
kill -9 `cat /var/run/rc.suspend.pid`
|
|
|
|
rm -f /var/run/rc.suspend.pid
|
|
|
|
echo rc.suspend is killed
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Turns on a power supply of a card in the slot inactivated.
|
|
|
|
# See also contrib/pccardq.c (only for PAO users).
|
1999-09-13 15:44:20 +00:00
|
|
|
# pccardq | awk -F '~' '$5 == "inactive" \
|
|
|
|
# { printf("pccardc power %d 1", $1); }' | sh
|
1999-07-10 18:02:42 +00:00
|
|
|
|
|
|
|
logger -t apmd resumed at `date +'%Y%m%d %H:%M:%S'`
|
|
|
|
sync && sync && sync
|
|
|
|
|
|
|
|
exit 0
|