mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-18 00:39:18 -04:00
24 lines
502 B
Bash
24 lines
502 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: ipa.sh,v 1.1 2006/10/18 11:45:23 markd Exp $
|
|
#
|
|
|
|
# If some IPA module requires some services, then they should
|
|
# be specified after REQUIRE, by default REQUIRE contains
|
|
# only syslogd, since ipa uses syslog for logging by default
|
|
# and does not require anything more for running.
|
|
|
|
# PROVIDE: ipa
|
|
# REQUIRE: syslogd
|
|
# BEFORE: LOGIN
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ipa"
|
|
rcvar=$name
|
|
command="@PREFIX@/bin/${name}"
|
|
extra_commands="reload"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|