]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/apmd.conf
Document the new {auth,ident,tap} service and provide examples in the
[FreeBSD/FreeBSD.git] / etc / apmd.conf
1 # apmd Configration File
2 #
3 #       $Id: apmd.conf,v 1.1.1 1999/07/09 01:34:57 iwasaki Exp $
4 #
5
6 apm_event SUSPENDREQ {
7         exec "/etc/rc.suspend";
8 }
9
10 apm_event USERSUSPENDREQ {
11         exec "sync && sync && sync";
12         exec "sleep 1";
13         exec "apm -z";
14 }
15
16 apm_event NORMRESUME, STANDBYRESUME {
17         exec "/etc/rc.resume";
18 }
19
20 # resume event configuration for serial mouse users by
21 # reinitializing a moused(8) connected to a serial port.
22 #
23 #apm_event NORMRESUME {
24 #       exec "kill -HUP `cat /var/run/moused.pid`";
25 #}
26
27 # suspend request event configuration for ATA HDD users:
28 # execute standby instead of suspend.
29 #
30 #apm_event SUSPENDREQ {
31 #       reject;
32 #       exec "sync && sync && sync";
33 #       exec "sleep 1";
34 #       exec "apm -Z";
35 #}
36
37 # apmd Configration ends here
38