0696600c41
The reasons for this are forward looking to pkgbase: * /sbin/init is a special binary; try not to replace it with every package update because an rc script was touched. (a follow-up commit will make init its own package) * having rc in its own place will allow more easy replacement of the rc framework with alternatives, such as openrc. Discussed with: brd (during BSDCam), kmoore Requested by: cem, bz PR: 231522 Approved by: re (gjb)
48 lines
595 B
Bash
Executable File
48 lines
595 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: apm
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="apm"
|
|
desc="Advanced power management"
|
|
rcvar="apm_enable"
|
|
start_precmd="apm_precmd"
|
|
command="/usr/sbin/${name}"
|
|
start_cmd="${command} -e enable"
|
|
stop_cmd="${command} -e disable"
|
|
status_cmd="apm_status"
|
|
|
|
apm_precmd()
|
|
{
|
|
case `${SYSCTL_N} hw.machine_arch` in
|
|
i386)
|
|
return 0
|
|
;;
|
|
esac
|
|
return 1
|
|
}
|
|
|
|
apm_status()
|
|
{
|
|
case `${command} -s` in
|
|
1)
|
|
echo "APM is enabled."
|
|
return 0
|
|
;;
|
|
0)
|
|
echo "APM is disabled"
|
|
;;
|
|
esac
|
|
return 1
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|