Revision d9df618a494d1c0ab29bf9e5add666053278ccdf authored by Jordan K. Hubbard on 20 September 2000, 08:51:23 UTC, committed by Jordan K. Hubbard on 20 September 2000, 08:51:23 UTC
1 parent fa15f19
Raw File
apmd.conf
# apmd Configration File
#
# $FreeBSD$
#

apm_event SUSPENDREQ {
	exec "/etc/rc.suspend";
}

apm_event USERSUSPENDREQ {
	exec "sync && sync && sync";
	exec "sleep 1";
	exec "apm -z";
}

apm_event NORMRESUME, STANDBYRESUME {
	exec "/etc/rc.resume";
}

# resume event configuration for serial mouse users by
# reinitializing a moused(8) connected to a serial port.
#
#apm_event NORMRESUME {
#	exec "kill -HUP `cat /var/run/moused.pid`";
#}

# suspend request event configuration for ATA HDD users:
# execute standby instead of suspend.
#
#apm_event SUSPENDREQ {
#	reject;
#	exec "sync && sync && sync";
#	exec "sleep 1";
#	exec "apm -Z";
#}

# apmd Configration ends here

back to top