mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-18 08:47:55 -04:00
28 lines
507 B
Bash
28 lines
507 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: kdm.sh,v 1.1 2012/03/19 19:44:03 markd Exp $
|
|
#
|
|
|
|
# PROVIDE: kdm
|
|
# REQUIRE: DAEMON LOGIN wscons
|
|
# KEYWORD: shutdown
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
. /etc/rc.subr
|
|
fi
|
|
|
|
name="kdm"
|
|
rcvar=$name
|
|
command="@PREFIX@/bin/${name}"
|
|
pidfile="/var/run/kdm.pid"
|
|
required_files="@PKG_SYSCONFDIR@/kdm/kdmrc"
|
|
command_args="-config ${required_files}"
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
else
|
|
echo -n " ${name}"
|
|
${command} ${kdm_flags} ${command_args}
|
|
fi
|