diff options
author | njl <njl@FreeBSD.org> | 2003-12-30 17:40:28 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-12-30 17:40:28 +0000 |
commit | 5b48e7752558011e542d72b8abe93e9b4f939f71 (patch) | |
tree | 593868c9507cf2d707bce6aa71cdae3fe410dfa6 /etc | |
parent | 00a572d32f64bd5dfa692784d26cfd9cd5e809bc (diff) | |
download | FreeBSD-src-5b48e7752558011e542d72b8abe93e9b4f939f71.zip FreeBSD-src-5b48e7752558011e542d72b8abe93e9b4f939f71.tar.gz |
Use separate events for resume from standby and suspend in the apm(4)
case so that if devices need different initialization, we can key off
this in the rc scripts (currently unused). Also update the man page
which is a 100% duplicate of the rc scripts.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/apmd.conf | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/apmd.conf b/etc/apmd.conf index 6726730..be4a6c3 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 |