aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2003-12-30 17:40:28 +0000
committerNate Lawson <njl@FreeBSD.org>2003-12-30 17:40:28 +0000
commita6991e097f307e3fe8b7401ffb1f816aec9deccf (patch)
tree593868c9507cf2d707bce6aa71cdae3fe410dfa6
parent56c46bdee4f197d6b14e74f459f3dc36383385cc (diff)
Notes
-rw-r--r--etc/apmd.conf8
-rw-r--r--usr.sbin/apmd/apmd.810
2 files changed, 13 insertions, 5 deletions
diff --git a/etc/apmd.conf b/etc/apmd.conf
index 672673059486..be4a6c3ddd4c 100644
--- a/etc/apmd.conf
+++ b/etc/apmd.conf
@@ -13,8 +13,12 @@ apm_event USERSUSPENDREQ {
exec "apm -z";
}
-apm_event NORMRESUME, STANDBYRESUME {
- exec "/etc/rc.resume apm resume";
+apm_event NORMRESUME {
+ exec "/etc/rc.resume apm suspend";
+}
+
+apm_event STANDBYRESUME {
+ exec "/etc/rc.resume apm standby";
}
# resume event configuration for serial mouse users by
diff --git a/usr.sbin/apmd/apmd.8 b/usr.sbin/apmd/apmd.8
index 70ff1b9cd053..10cc6fd8eabf 100644
--- a/usr.sbin/apmd/apmd.8
+++ b/usr.sbin/apmd/apmd.8
@@ -252,7 +252,7 @@ STANDBY state instead.
Sample configuration commands include:
.Bd -literal
apm_event SUSPENDREQ {
- exec "/etc/rc.suspend";
+ exec "/etc/rc.suspend apm suspend";
}
apm_event USERSUSPENDREQ {
@@ -261,8 +261,12 @@ apm_event USERSUSPENDREQ {
exec "apm -z";
}
-apm_event NORMRESUME, STANDBYRESUME {
- exec "/etc/rc.resume";
+apm_event NORMRESUME {
+ exec "/etc/rc.resume apm suspend";
+}
+
+apm_event STANDBYRESUME {
+ exec "/etc/rc.resume apm standby";
}
# resume event configuration for serial mouse users by