summaryrefslogtreecommitdiffstats
path: root/etc/rc.resume
diff options
context:
space:
mode:
authoriwasaki <iwasaki@FreeBSD.org>1999-07-10 18:02:42 +0000
committeriwasaki <iwasaki@FreeBSD.org>1999-07-10 18:02:42 +0000
commitbe16db802f075e6d3399b571b73a5d2d901565f4 (patch)
treef7933333e0969471d5799ca4b615bb2029d1c5f2 /etc/rc.resume
parent669be26799b5a0577fb8f2f3716b8a715be82845 (diff)
downloadFreeBSD-src-be16db802f075e6d3399b571b73a5d2d901565f4.zip
FreeBSD-src-be16db802f075e6d3399b571b73a5d2d901565f4.tar.gz
Put apmd configuration and rc files in /etc.
Update some files for apmd.
Diffstat (limited to 'etc/rc.resume')
-rwxr-xr-xetc/rc.resume23
1 files changed, 23 insertions, 0 deletions
diff --git a/etc/rc.resume b/etc/rc.resume
new file mode 100755
index 0000000..a794a8d
--- /dev/null
+++ b/etc/rc.resume
@@ -0,0 +1,23 @@
+#!/bin/sh
+#
+# $Id: rc.resume,v 1.1.1 1999/07/09 01:34:57 iwasaki Exp $
+#
+# 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
+
OpenPOWER on IntegriCloud