mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-16 09:31:50 -04:00
18 lines
256 B
Bash
Executable File
18 lines
256 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: powerd,v 1.2 2004/08/13 18:08:03 mycroft Exp $
|
|
#
|
|
|
|
# PROVIDE: powerd
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
|
|
|
name="powerd"
|
|
rcvar=$name
|
|
command="/usr/sbin/${name}"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|