NetBSD/etc/rc.d/sendmail

29 lines
649 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: sendmail,v 1.3 2000/05/03 10:55:20 itojun Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: mail
# REQUIRE: LOGIN
2000-03-10 14:53:23 +03:00
# we could do this, but make mail start late, so that things like
# .forward's are not processed until the system is fully operational
## REQUIRE: DAEMON
2000-03-10 14:53:23 +03:00
. /etc/rc.subr
. /etc/rc.conf
name="sendmail"
command="/usr/sbin/${name}"
pidfile="/var/run/${name}.pid"
if [ -f "/etc/${name}.cf" ]; then
required_files="/etc/${name}.cf"
command_args="-C${required_files}"
warn "using ${required_files}."
warn "default location was changed, move ${required_files} to /etc/mail."
else
required_files="/etc/mail/${name}.cf"
fi
2000-03-10 14:53:23 +03:00
run_rc_command "$1"