freebsd-dev/etc/rc.d/apmd
Jens Schweikhardt 143085107b Fix style bugs:
* Space -> tabs conversion.
* Removed blanks before semicolon in "if ... ; then".
* Proper indentation of misindented lines.
* Put a full stop after some comments.
* Removed whitespace at end of line.

Approved by:	silence from gordon
2002-10-12 10:31:31 +00:00

40 lines
550 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: apmd,v 1.5 2002/03/22 04:33:58 thorpej Exp $
# $FreeBSD$
#
# PROVIDE: apmd
# REQUIRE: DAEMON apm
# BEFORE: LOGIN
# KEYWORD: FreeBSD NetBSD
. /etc/rc.subr
name="apmd"
rcvar=`set_rcvar`
command="/usr/sbin/${name}"
case ${OSTYPE} in
FreeBSD)
start_precmd="apmd_prestart"
;;
esac
apmd_prestart()
{
case `${SYSCTL_N} hw.machine_arch` in
i386)
# Don't start if apm is already running
/etc/rc.d/apm forcestatus > /dev/null && return 1
;;
*)
return 1
;;
esac
return 0
}
load_rc_config $name
run_rc_command "$1"