321704296f
case instead of test where appropriate, since case allows case is a sh builtin and (as a side-effect) allows case-insensitivity. Changes discussed on freebsd-hackers. Submitted by: Doug Barton <Doug@gorean.org>
22 lines
498 B
Bash
Executable File
22 lines
498 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# sample run command file for APM Resume Event
|
|
|
|
if [ -r /var/run/rc.suspend.pid ]; then
|
|
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).
|
|
# pccardq | awk -F '~' '$5 == "inactive" \
|
|
# { printf("pccardc power %d 1", $1); }' | sh
|
|
|
|
logger -t apmd resumed at `date +'%Y%m%d %H:%M:%S'`
|
|
sync && sync && sync
|
|
|
|
exit 0
|