mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
23 lines
405 B
Bash
23 lines
405 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: openct.sh,v 1.1.1.1 2009/02/26 10:07:49 hasso Exp $
|
|
#
|
|
|
|
# PROVIDE: openct
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="openct"
|
|
rcvar=$name
|
|
command="@PREFIX@/sbin/openct-control"
|
|
required_files="@PKG_SYSCONFDIR@/openct.conf"
|
|
|
|
start_cmd="${command} init"
|
|
stop_cmd="${command} shutdown"
|
|
status_cmd="${command} status"
|
|
|
|
load_rc_config $name
|
|
run_rc_command $1
|