Date: Fri, 16 Jul 2004 16:28:33 -0500 From: Paul Schmehl <pauls@utdallas.edu> To: freebsd-questions@freebsd.org Subject: rc script fails to start on boot Message-ID: <7CC06F9188A1E94CE692DDCF@utd49554.utdallas.edu>
next in thread | raw e-mail | index | archive | help
I've written a very simple rc script, using the new format, to control a
process. The script works fine from the commandline.
(start|stop|restart|rcvar|status|etc all work fine.) But the script fails
to start up the process on reboot.
I've googled til I'm blue in the face, but I can't figure out what is wrong
with the script. I'm sure it's something simple that I've overlooked, so
I'm hoping putting more eyes on the problem will solve it quickly.
Here's the script, without any of the comments:
bash-2.05b# grep -v "#" /usr/local/etc/rc.d/extractor.sh
#!/bin/sh
# $Id$
# PROVIDE: extractor
# BEFORE: LOGIN
# KEYWORD: FreeBSD
. /usr/local/etc/rc.subr
name="extractor"
rcvar=`set_rcvar`
command="/usr/local/bin/${name}"
load_rc_config $name
run_rc_command "$1"
Paul Schmehl (pauls@utdallas.edu)
Adjunct Information Security Officer
The University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu/ir/security/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?7CC06F9188A1E94CE692DDCF>
