aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.resume
blob: 74db8ed579a658c6f2916f03a60765834551020e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
#
# $FreeBSD$
#
# sample run command file for APM Resume Event

if [ -f /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