19 lines
347 B
Bash
19 lines
347 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: teapop,v 1.1 2002/05/07 23:46:01 hubertf Exp $
|
|
#
|
|
# PROVIDE: teapop
|
|
# REQUIRE: DAEMON
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="teapop"
|
|
rcvar=$name
|
|
command="@PREFIX@/libexec/${name}"
|
|
command_args="-s"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="@PREFIX@/etc/teapop.passwd"
|
|
sig_stop="INT"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|