2001-11-19 06:18:32 +03:00
|
|
|
# $NetBSD: rc.subr,v 1.38 2001/11/19 03:18:32 lukem Exp $
|
2000-03-10 14:39:27 +03:00
|
|
|
#
|
|
|
|
# Copyright (c) 1997-2000 The NetBSD Foundation, Inc.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
# by Luke Mewburn.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# 3. All advertising materials mentioning features or use of this software
|
|
|
|
# must display the following acknowledgement:
|
|
|
|
# This product includes software developed by the NetBSD
|
|
|
|
# Foundation, Inc. and its contributors.
|
|
|
|
# 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
# rc.subr
|
|
|
|
# functions used by various rc scripts
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# functions
|
|
|
|
# ---------
|
1997-08-29 06:24:04 +04:00
|
|
|
|
1998-03-01 01:56:11 +03:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# checkyesno var
|
1998-03-01 01:56:11 +03:00
|
|
|
# Test $1 variable, and warn if not set to YES or NO.
|
2000-03-10 14:39:27 +03:00
|
|
|
# Return 0 if it's "yes" (et al), nonzero otherwise.
|
1998-03-01 01:56:11 +03:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
checkyesno()
|
|
|
|
{
|
|
|
|
eval _value=\$${1}
|
|
|
|
case $_value in
|
1998-03-01 01:54:02 +03:00
|
|
|
|
|
|
|
# "yes", "true", "on", or "1"
|
|
|
|
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
|
|
|
|
return 0
|
1998-01-26 07:36:26 +03:00
|
|
|
;;
|
1998-03-01 01:54:02 +03:00
|
|
|
|
|
|
|
# "no", "false", "off", or "0"
|
|
|
|
[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
|
|
|
|
return 1
|
1998-01-26 07:36:26 +03:00
|
|
|
;;
|
|
|
|
*)
|
2000-03-10 14:39:27 +03:00
|
|
|
warn "\$${1} is not set properly."
|
1998-03-01 01:54:02 +03:00
|
|
|
return 1
|
1998-01-26 07:36:26 +03:00
|
|
|
;;
|
|
|
|
esac
|
1997-08-29 06:24:04 +04:00
|
|
|
}
|
1999-03-24 21:59:47 +03:00
|
|
|
|
2001-11-19 06:18:32 +03:00
|
|
|
# reverse_list list
|
|
|
|
# print the list in reverse order
|
|
|
|
#
|
|
|
|
reverse_list()
|
|
|
|
{
|
|
|
|
_revlist=
|
|
|
|
for _revfile in $*; do
|
|
|
|
_revlist="$_revfile $_revlist"
|
|
|
|
done
|
|
|
|
echo $_revlist
|
|
|
|
}
|
|
|
|
|
1999-03-24 21:59:47 +03:00
|
|
|
#
|
|
|
|
# mount_critical_filesystems
|
|
|
|
# Go through the list of critical filesystems, checking each one
|
|
|
|
# to see if it is mounted, and if it is not, mounting it.
|
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
mount_critical_filesystems()
|
|
|
|
{
|
1999-07-08 01:24:56 +04:00
|
|
|
if [ $1 = local ]; then
|
|
|
|
_fslist=$critical_filesystems_beforenet
|
|
|
|
else
|
|
|
|
_fslist=$critical_filesystems
|
|
|
|
fi
|
2000-04-30 17:16:47 +04:00
|
|
|
for _fs in $_fslist; do
|
1999-03-24 21:59:47 +03:00
|
|
|
mount | (
|
2000-04-30 17:16:47 +04:00
|
|
|
_ismounted=no
|
1999-03-24 21:59:47 +03:00
|
|
|
while read what _on on _type type; do
|
2000-04-30 17:16:47 +04:00
|
|
|
if [ $on = $_fs ]; then
|
|
|
|
_ismounted=yes
|
1999-03-24 21:59:47 +03:00
|
|
|
fi
|
|
|
|
done
|
2000-04-30 17:16:47 +04:00
|
|
|
if [ $_ismounted = no ]; then
|
|
|
|
mount $_fs >/dev/null 2>&1
|
1999-03-24 21:59:47 +03:00
|
|
|
fi
|
|
|
|
)
|
|
|
|
done
|
|
|
|
}
|
1999-04-01 07:58:44 +04:00
|
|
|
|
2000-03-10 14:39:27 +03:00
|
|
|
#
|
|
|
|
# check_pidfile pidfile procname
|
|
|
|
# Parses the first line of pidfile for a pid, and ensures
|
|
|
|
# that the process is running and matches procname.
|
|
|
|
# Prints the matching pid upon success, nothing otherwise.
|
|
|
|
#
|
|
|
|
check_pidfile()
|
|
|
|
{
|
|
|
|
_pidfile=$1
|
|
|
|
_procname=$2
|
|
|
|
if [ -z "$_pidfile" -o -z "$_procname" ]; then
|
|
|
|
err 3 'USAGE: check_pidfile pidfile procname'
|
|
|
|
fi
|
|
|
|
if [ ! -f $_pidfile ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
read _pid _junk < $_pidfile
|
|
|
|
if [ -z "$_pid" ]; then
|
|
|
|
return
|
|
|
|
fi
|
2000-10-07 11:36:56 +04:00
|
|
|
_procnamebn=${_procname##*/}
|
2000-03-10 14:39:27 +03:00
|
|
|
ps -p $_pid -o 'pid,command' | while read _npid _arg0 _argv; do
|
2001-02-28 19:49:18 +03:00
|
|
|
case "$_npid" in
|
|
|
|
PID)
|
|
|
|
continue ;;
|
|
|
|
esac
|
|
|
|
case "$_arg0" in
|
|
|
|
$_procname|$_procnamebn|${_procnamebn}:|"(${_procnamebn})")
|
2000-03-10 14:39:27 +03:00
|
|
|
echo $_npid
|
|
|
|
return
|
2001-02-28 19:49:18 +03:00
|
|
|
;;
|
|
|
|
esac
|
2000-03-10 14:39:27 +03:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# check_process procname
|
|
|
|
# Ensures that a process (or processes) named procname is running.
|
|
|
|
# Prints a list of matching pids.
|
|
|
|
#
|
|
|
|
check_process()
|
|
|
|
{
|
|
|
|
_procname=$1
|
|
|
|
if [ -z "$_procname" ]; then
|
|
|
|
err 3 'USAGE: check_process procname'
|
|
|
|
fi
|
2000-10-07 11:36:56 +04:00
|
|
|
_procnamebn=${_procname##*/}
|
2000-03-10 14:39:27 +03:00
|
|
|
_pref=
|
|
|
|
ps -ax -o 'pid,command' | while read _npid _arg0 _argv; do
|
2001-02-28 19:49:18 +03:00
|
|
|
case "$_npid" in
|
|
|
|
PID)
|
|
|
|
continue ;;
|
|
|
|
esac
|
|
|
|
case "$_arg0" in
|
|
|
|
$_procname|$_procnamebn|${_procnamebn}:|"(${_procnamebn})")
|
2000-03-10 14:39:27 +03:00
|
|
|
echo -n "$_pref$_npid"
|
|
|
|
_pref=" "
|
2001-02-28 19:49:18 +03:00
|
|
|
;;
|
|
|
|
esac
|
2000-03-10 14:39:27 +03:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2001-04-18 05:31:40 +04:00
|
|
|
#
|
|
|
|
# wait_for_pids pid [pid ...]
|
2001-05-09 20:40:59 +04:00
|
|
|
# spins until none of the pids exist
|
2001-04-18 05:31:40 +04:00
|
|
|
#
|
|
|
|
wait_for_pids()
|
|
|
|
{
|
|
|
|
_list=$*
|
|
|
|
if [ -z "$_list" ]; then
|
|
|
|
return
|
|
|
|
fi
|
2001-05-09 20:40:59 +04:00
|
|
|
_prefix=
|
|
|
|
while true; do
|
2001-04-18 05:31:40 +04:00
|
|
|
_nlist="";
|
|
|
|
for _j in $_list; do
|
|
|
|
if kill -0 $_j 2>/dev/null; then
|
|
|
|
_nlist="${_nlist}${_nlist:+ }$_j"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ -z "$_nlist" ]; then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
_list=$_nlist
|
2001-05-09 20:40:59 +04:00
|
|
|
echo -n ${_prefix:-"Waiting for PIDS: "}$_list
|
|
|
|
_prefix=", "
|
|
|
|
sleep 2
|
2001-04-18 05:31:40 +04:00
|
|
|
done
|
2001-05-09 20:40:59 +04:00
|
|
|
if [ -n "$_prefix" ]; then
|
|
|
|
echo "."
|
|
|
|
fi
|
2001-04-18 05:31:40 +04:00
|
|
|
}
|
|
|
|
|
2000-03-10 14:39:27 +03:00
|
|
|
#
|
2000-04-30 16:19:07 +04:00
|
|
|
# run_rc_command arg
|
|
|
|
# Search for arg in the list of supported commands, which is:
|
2001-04-18 05:31:40 +04:00
|
|
|
# "start stop restart rcvar status poll ${extra_commands}"
|
2000-03-10 14:39:27 +03:00
|
|
|
# If there's a match, run ${arg}_cmd or the default command (see below).
|
|
|
|
#
|
2000-04-30 16:19:07 +04:00
|
|
|
# If arg has a given prefix, then change the operation as follows:
|
2000-03-10 14:39:27 +03:00
|
|
|
# prefix operation
|
|
|
|
# ------ ---------
|
|
|
|
# fast Skip the pid check.
|
|
|
|
# force Set ${rcvar} to YES.
|
|
|
|
#
|
|
|
|
# The following globals are used:
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# name needed function
|
|
|
|
# ---- ------ --------
|
|
|
|
# name y Name of script.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# command n Full path to command.
|
|
|
|
# Not needed if ${arg}_cmd is set for
|
|
|
|
# each keyword.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# command_args n Optional args/shell directives for command.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-04-30 16:19:07 +04:00
|
|
|
# extra_commands n List of extra commands supported.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# pidfile n If set, use check_pidfile $pidfile, else if
|
|
|
|
# $command is set, use check_process $command.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
|
|
|
# rcvar n This is checked with checkyesno to determine
|
|
|
|
# if the action should be run.
|
|
|
|
#
|
2000-08-17 15:07:10 +04:00
|
|
|
# ${name}_chroot n Directory to chroot to before running ${command}
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-08-17 15:07:10 +04:00
|
|
|
# ${name}_chdir n Directory to cd to before running ${command}
|
|
|
|
# (if not using ${name}_chroot).
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# ${name}_flags n Arguments to call ${command} with.
|
2000-09-19 17:04:38 +04:00
|
|
|
# NOTE: $flags from the parent environment
|
|
|
|
# can be used to override this.
|
|
|
|
#
|
2000-08-19 12:47:43 +04:00
|
|
|
# ${name}_nice n Nice level to run ${command} at.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-08-17 15:07:10 +04:00
|
|
|
# ${name}_user n User to run ${command} as, using su(1) if not
|
|
|
|
# using ${name}_chroot.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-08-17 15:07:10 +04:00
|
|
|
# ${name}_group n Group to run chrooted ${command} as.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2001-04-06 10:48:35 +04:00
|
|
|
# ${name}_groups n Comma separated list of supplementary groups
|
|
|
|
# to run the chrooted ${command} with.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# ${_arg}_cmd n If set, use this as the action when invoked;
|
|
|
|
# $_arg is available to the action to use.
|
|
|
|
# Otherwise, use default command (see below)
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# ${_arg}_precmd n If set, run just before performing the main
|
|
|
|
# action in the default command (i.e, after
|
|
|
|
# checking for required bits and process
|
|
|
|
# (non)existance).
|
|
|
|
# If this completes with a non-zero exit code,
|
|
|
|
# don't run ${_arg}_cmd.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# required_dirs n If set, check for the existence of the given
|
|
|
|
# directories before running the default
|
|
|
|
# (re)start command.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# required_files n If set, check for the readability of the given
|
|
|
|
# files before running the default (re)start
|
|
|
|
# command.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# required_vars n If set, perform checkyesno on each of the
|
|
|
|
# listed variables before running the default
|
|
|
|
# (re)start command.
|
|
|
|
#
|
|
|
|
# Default commands for a given arg:
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# arg default
|
|
|
|
# --- -------
|
|
|
|
# start if !running && checkyesno ${rcvar}
|
|
|
|
# ${command}
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# stop if ${pidfile}
|
2001-05-09 20:40:59 +04:00
|
|
|
# _pid=`check_pidfile $pidfile`
|
2000-03-10 14:39:27 +03:00
|
|
|
# else
|
2001-05-09 20:40:59 +04:00
|
|
|
# _pid=`check_process $command`
|
|
|
|
# kill $sig_stop $_pid
|
|
|
|
# wait_for_pids $_pid
|
|
|
|
# ($sig_stop defaults to TERM.)
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2001-05-09 20:40:59 +04:00
|
|
|
# reload Similar to stop, except use $sig_reload instead,
|
|
|
|
# and doesn't wait_for_pids.
|
2000-03-10 14:39:27 +03:00
|
|
|
# $sig_reload defaults to HUP.
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# restart Run `stop' then `start'.
|
|
|
|
#
|
2001-04-18 05:31:40 +04:00
|
|
|
# status Show if ${command} is running, etc.
|
|
|
|
#
|
|
|
|
# poll Wait for ${command} to exit.
|
|
|
|
#
|
|
|
|
# rcvar Display what rc.conf variable is used (if any).
|
|
|
|
#
|
|
|
|
#
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
run_rc_command()
|
|
|
|
{
|
|
|
|
_arg=$1
|
2000-09-19 17:04:38 +04:00
|
|
|
if [ -z "$name" ]; then
|
2001-02-28 19:49:18 +03:00
|
|
|
err 3 'run_rc_command: $name is not set.'
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
case "$_arg" in
|
2000-09-19 17:04:38 +04:00
|
|
|
fast*) # "fast" prefix; don't check pid
|
2000-03-10 14:39:27 +03:00
|
|
|
_arg=${_arg#fast}
|
|
|
|
_rc_fast_run=YES
|
|
|
|
;;
|
2000-09-19 17:04:38 +04:00
|
|
|
force*) # "force prefix; always start
|
2000-03-10 14:39:27 +03:00
|
|
|
_arg=${_arg#force}
|
2000-09-19 17:04:38 +04:00
|
|
|
_rc_force_run=YES
|
2000-11-17 06:47:43 +03:00
|
|
|
if [ -n "${rcvar}" ]; then
|
|
|
|
eval ${rcvar}=YES
|
|
|
|
fi
|
2000-03-10 14:39:27 +03:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2000-04-30 16:19:07 +04:00
|
|
|
_keywords="start stop restart rcvar $extra_commands"
|
2000-04-30 17:16:47 +04:00
|
|
|
_pid=
|
2000-03-10 14:39:27 +03:00
|
|
|
_pidcmd=
|
2000-09-19 17:04:38 +04:00
|
|
|
# setup pid check command if not fast
|
2000-03-10 14:39:27 +03:00
|
|
|
if [ -z "$_rc_fast_run" ]; then
|
|
|
|
if [ -n "$pidfile" ]; then
|
|
|
|
_pidcmd='_pid=`check_pidfile '$pidfile' '$command'`'
|
|
|
|
elif [ -n "$command" ]; then
|
|
|
|
_pidcmd='_pid=`check_process '$command'`'
|
|
|
|
fi
|
|
|
|
if [ -n "$_pidcmd" ]; then
|
2001-04-18 05:31:40 +04:00
|
|
|
_keywords="${_keywords} status poll"
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$_arg" ]; then
|
|
|
|
rc_usage "$_keywords"
|
1999-04-01 07:58:44 +04:00
|
|
|
fi
|
2000-03-10 14:39:27 +03:00
|
|
|
|
2000-04-30 17:16:47 +04:00
|
|
|
if [ -n "$flags" ]; then # allow override from environment
|
2000-03-10 14:39:27 +03:00
|
|
|
_flags=$flags
|
|
|
|
else
|
|
|
|
eval _flags=\$${name}_flags
|
|
|
|
fi
|
2001-02-28 19:49:18 +03:00
|
|
|
eval _chdir=\$${name}_chdir _chroot=\$${name}_chroot \
|
|
|
|
_nice=\$${name}_nice _user=\$${name}_user \
|
|
|
|
_group=\$${name}_group _groups=\$${name}_groups
|
2000-03-10 14:39:27 +03:00
|
|
|
|
2000-11-17 06:47:43 +03:00
|
|
|
# if ${rcvar} is set, and $1 is not
|
|
|
|
# "rcvar" or "status", then run
|
|
|
|
# checkyesno ${rcvar}
|
|
|
|
# and return if that failed
|
2000-09-19 17:04:38 +04:00
|
|
|
#
|
2001-02-28 19:49:18 +03:00
|
|
|
# XXXX use case?
|
2000-11-17 06:47:43 +03:00
|
|
|
if [ -n "${rcvar}" -a "$_arg" != "rcvar" -a "$_arg" != "status" ]; then
|
2000-09-19 17:04:38 +04:00
|
|
|
if ! checkyesno ${rcvar}; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
eval $_pidcmd # determine the pid if necessary
|
2000-03-10 14:39:27 +03:00
|
|
|
|
|
|
|
for _elem in $_keywords; do
|
|
|
|
if [ "$_elem" != "$_arg" ]; then
|
|
|
|
continue
|
1999-04-01 07:58:44 +04:00
|
|
|
fi
|
2000-03-10 14:39:27 +03:00
|
|
|
|
2000-09-19 17:04:38 +04:00
|
|
|
# if there's a custom ${XXX_cmd},
|
|
|
|
# run that instead of the default
|
|
|
|
#
|
2001-02-28 19:49:18 +03:00
|
|
|
eval _cmd=\$${_arg}_cmd _precmd=\$${_arg}_precmd
|
2000-03-10 14:39:27 +03:00
|
|
|
if [ -n "$_cmd" ]; then
|
2000-09-19 17:04:38 +04:00
|
|
|
# if the precmd failed and force
|
|
|
|
# isn't set, exit
|
|
|
|
#
|
|
|
|
if ! eval $_precmd && [ -z "$_rc_force_run" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2000-03-10 14:39:27 +03:00
|
|
|
eval $_cmd
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2000-09-19 17:04:38 +04:00
|
|
|
case "$_arg" in # default operations...
|
2000-03-10 14:39:27 +03:00
|
|
|
|
|
|
|
status)
|
|
|
|
if [ -n "$_pid" ]; then
|
|
|
|
echo "${name} is running as pid $_pid."
|
|
|
|
else
|
|
|
|
echo "${name} is not running."
|
2000-11-06 03:08:30 +03:00
|
|
|
return 1
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
start)
|
|
|
|
if [ -n "$_pid" ]; then
|
|
|
|
echo "${name} already running? (pid=$_pid)."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2000-09-19 17:04:38 +04:00
|
|
|
if [ ! -x $command ]; then
|
2000-03-10 14:39:27 +03:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2000-09-19 17:04:38 +04:00
|
|
|
# check for required variables,
|
|
|
|
# directories, and files
|
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
for _f in $required_vars; do
|
|
|
|
if ! checkyesno $_f; then
|
2000-09-19 17:04:38 +04:00
|
|
|
warn "\$${_f} is not set."
|
|
|
|
if [ -z "$_rc_force_run" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
for _f in $required_dirs; do
|
|
|
|
if [ ! -d "${_f}/." ]; then
|
2000-10-01 14:10:18 +04:00
|
|
|
warn "${_f} is not a directory."
|
2000-09-19 17:04:38 +04:00
|
|
|
if [ -z "$_rc_force_run" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
for _f in $required_files; do
|
|
|
|
if [ ! -r "${_f}" ]; then
|
2000-10-01 14:10:18 +04:00
|
|
|
warn "${_f} is not readable."
|
2000-09-19 17:04:38 +04:00
|
|
|
if [ -z "$_rc_force_run" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2000-09-19 17:04:38 +04:00
|
|
|
# if the precmd failed and force
|
|
|
|
# isn't set, exit
|
|
|
|
#
|
|
|
|
if ! eval $_precmd && [ -z "$_rc_force_run" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# setup the command to run, and run it
|
2000-11-17 06:47:43 +03:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
echo "Starting ${name}."
|
2000-08-17 15:07:10 +04:00
|
|
|
if [ -n "$_chroot" ]; then
|
|
|
|
_doit="\
|
2000-08-19 12:47:43 +04:00
|
|
|
${_nice:+nice -n $_nice }\
|
2000-08-17 15:07:10 +04:00
|
|
|
chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\
|
|
|
|
$_chroot $command $_flags $command_args"
|
|
|
|
else
|
|
|
|
_doit="\
|
2000-05-13 07:07:17 +04:00
|
|
|
${_chdir:+cd $_chdir; }\
|
|
|
|
${_nice:+nice -n $_nice }\
|
2001-05-07 11:07:11 +04:00
|
|
|
$command $_flags $command_args"
|
|
|
|
if [ -n "$_user" ]; then
|
|
|
|
_doit="su -m $_user -c 'sh -c \"$_doit\"'"
|
|
|
|
fi
|
2000-08-17 15:07:10 +04:00
|
|
|
fi
|
2000-05-13 07:07:17 +04:00
|
|
|
eval $_doit
|
2000-03-10 14:39:27 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
stop)
|
|
|
|
if [ -z "$_pid" ]; then
|
2000-09-19 17:04:38 +04:00
|
|
|
if [ -n "$pidfile" ]; then
|
|
|
|
echo \
|
|
|
|
"${name} not running? (check $pidfile)."
|
|
|
|
else
|
|
|
|
echo "${name} not running?"
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
2000-09-19 17:04:38 +04:00
|
|
|
exit 1
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
|
|
|
|
2000-09-19 17:04:38 +04:00
|
|
|
if ! eval $_precmd && [ -z "$_rc_force_run" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
2000-03-10 14:39:27 +03:00
|
|
|
echo "Stopping ${name}."
|
2001-05-07 11:07:11 +04:00
|
|
|
_doit="kill -${sig_stop:-TERM} $_pid"
|
|
|
|
if [ -n "$_user" ]; then
|
|
|
|
_doit="su -m $_user -c 'sh -c \"$_doit\"'"
|
|
|
|
fi
|
2000-05-13 07:07:17 +04:00
|
|
|
eval $_doit
|
2001-05-09 20:40:59 +04:00
|
|
|
wait_for_pids $_pid
|
2000-03-10 14:39:27 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
reload)
|
|
|
|
if [ -z "$_pid" ]; then
|
2000-09-19 17:04:38 +04:00
|
|
|
if [ -n "$pidfile" ]; then
|
|
|
|
echo \
|
2000-03-10 14:39:27 +03:00
|
|
|
"${name} not running? (check $pidfile)."
|
2000-09-19 17:04:38 +04:00
|
|
|
else
|
|
|
|
echo "${name} not running?"
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
2000-09-19 17:04:38 +04:00
|
|
|
exit 1
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
|
|
|
echo "Reloading ${name} config files."
|
2000-09-19 17:04:38 +04:00
|
|
|
if ! eval $_precmd && [ -z "$_rc_force_run" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
2001-05-07 11:07:11 +04:00
|
|
|
_doit="kill -${sig_reload:-HUP} $_pid"
|
|
|
|
if [ -n "$_user" ]; then
|
|
|
|
_doit="su -m $_user -c 'sh -c \"$_doit\"'"
|
|
|
|
fi
|
2000-05-13 07:07:17 +04:00
|
|
|
eval $_doit
|
2000-03-10 14:39:27 +03:00
|
|
|
;;
|
|
|
|
|
|
|
|
restart)
|
2000-09-19 17:04:38 +04:00
|
|
|
if ! eval $_precmd && [ -z "$_rc_force_run" ]; then
|
|
|
|
return 1
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
2000-11-17 06:47:43 +03:00
|
|
|
# prevent restart being called more
|
|
|
|
# than once by any given script
|
|
|
|
#
|
|
|
|
if [ -n "$_rc_restart_done" ]; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
_rc_restart_done=YES
|
2001-04-18 05:31:40 +04:00
|
|
|
|
2000-11-06 02:48:14 +03:00
|
|
|
( $0 ${_rc_force_run:+force}stop )
|
|
|
|
$0 ${_rc_force_run:+force}start
|
2000-03-10 14:39:27 +03:00
|
|
|
|
|
|
|
;;
|
|
|
|
|
2001-04-18 05:31:40 +04:00
|
|
|
poll)
|
|
|
|
if [ -n "$_pid" ]; then
|
|
|
|
wait_for_pids $_pid
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
2000-03-10 14:39:27 +03:00
|
|
|
rcvar)
|
|
|
|
echo "# $name"
|
2000-09-19 17:04:38 +04:00
|
|
|
if [ -n "$rcvar" ]; then
|
|
|
|
if checkyesno ${rcvar}; then
|
|
|
|
echo "\$${rcvar}=YES"
|
|
|
|
else
|
|
|
|
echo "\$${rcvar}=NO"
|
|
|
|
fi
|
2000-03-10 14:39:27 +03:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
rc_usage "$_keywords"
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
return 0
|
|
|
|
done
|
|
|
|
|
|
|
|
echo 1>&2 "$0: unknown directive '$_arg'."
|
|
|
|
rc_usage "$_keywords"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# run_rc_script file arg
|
|
|
|
# Start the script `file' with `arg', and correctly handle the
|
2000-04-30 17:16:47 +04:00
|
|
|
# return value from the script. If `file' ends with `.sh', it's
|
2001-06-18 10:53:45 +04:00
|
|
|
# sourced into the current environment. If `file' appears to be
|
|
|
|
# a backup or scratch file, ignore it. Otherwise if it's
|
|
|
|
# executable run as a child process.
|
2000-04-30 17:16:47 +04:00
|
|
|
#
|
2000-03-10 14:39:27 +03:00
|
|
|
# Note: because `.sh' files are sourced into the current environment
|
2001-06-18 10:53:45 +04:00
|
|
|
# run_rc_command() shouldn't be used because its difficult to ensure
|
2000-03-10 14:39:27 +03:00
|
|
|
# that the global variable state before and after the sourcing of
|
|
|
|
# the .sh file won't adversely affect other scripts.
|
|
|
|
#
|
|
|
|
run_rc_script()
|
|
|
|
{
|
|
|
|
_file=$1
|
|
|
|
_arg=$2
|
|
|
|
if [ -z "$_file" -o -z "$_arg" ]; then
|
|
|
|
err 3 'USAGE: run_rc_script file arg'
|
|
|
|
fi
|
|
|
|
|
2001-02-28 19:49:18 +03:00
|
|
|
if [ -n "$rc_fast_and_loose" ]; then
|
|
|
|
unset name command command_args extra_commands pidfile rcvar
|
|
|
|
unset required_dirs required_files required_vars
|
|
|
|
eval unset ${_arg}_cmd ${_arg}_precmd
|
2000-03-10 14:39:27 +03:00
|
|
|
set $_arg ; . $_file
|
2001-02-28 19:49:18 +03:00
|
|
|
else
|
|
|
|
case "$_file" in
|
|
|
|
*.sh) # run in current shell
|
|
|
|
set $_arg ; . $_file
|
|
|
|
;;
|
2001-06-18 10:53:45 +04:00
|
|
|
*[~#]|*.OLD|*.orig) # scratch file; skip
|
|
|
|
warn "Ignoring scratch file $_file"
|
|
|
|
;;
|
2001-02-28 19:49:18 +03:00
|
|
|
*) # run in subshell
|
2001-06-18 10:53:45 +04:00
|
|
|
if [ -x $_file ]; then
|
|
|
|
( set $_arg ; . $_file )
|
|
|
|
fi
|
2001-02-28 19:49:18 +03:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2000-03-10 14:39:27 +03:00
|
|
|
}
|
|
|
|
|
2000-05-13 12:23:45 +04:00
|
|
|
#
|
|
|
|
# load_rc_config
|
|
|
|
# Source in the configuration file for a given command.
|
|
|
|
#
|
|
|
|
load_rc_config()
|
|
|
|
{
|
|
|
|
_command=$1
|
|
|
|
if [ -z "$_command" ]; then
|
|
|
|
err 3 'USAGE: load_rc_config command'
|
|
|
|
fi
|
|
|
|
|
2001-02-28 19:49:18 +03:00
|
|
|
if [ -z "$_rc_conf_loaded" ]; then
|
|
|
|
. /etc/rc.conf
|
|
|
|
_rc_conf_loaded=YES
|
|
|
|
fi
|
2000-06-09 18:27:57 +04:00
|
|
|
if [ -f /etc/rc.conf.d/"$_command" ]; then
|
|
|
|
. /etc/rc.conf.d/"$_command"
|
|
|
|
fi
|
2000-05-13 12:23:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-10 14:39:27 +03:00
|
|
|
#
|
|
|
|
# rc_usage commands
|
|
|
|
# Print a usage string for $0, with `commands' being a list of
|
|
|
|
# valid commands.
|
|
|
|
#
|
|
|
|
rc_usage()
|
|
|
|
{
|
|
|
|
echo -n 1>&2 "Usage: $0 [fast|force]("
|
|
|
|
|
|
|
|
_sep=
|
|
|
|
for _elem in $*; do
|
|
|
|
echo -n 1>&2 "$_sep$_elem"
|
|
|
|
_sep="|"
|
|
|
|
done
|
|
|
|
echo 1>&2 ")"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# err exitval message
|
|
|
|
# Display message to stderr and log to the syslog, and exit with exitval.
|
|
|
|
#
|
|
|
|
err()
|
|
|
|
{
|
|
|
|
exitval=$1
|
|
|
|
shift
|
|
|
|
|
2000-07-21 03:12:44 +04:00
|
|
|
logger "$0: ERROR: $*"
|
|
|
|
echo 1>&2 "$0: ERROR: $*"
|
2000-03-10 14:39:27 +03:00
|
|
|
exit $exitval
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# warn message
|
|
|
|
# Display message to stderr and log to the syslog.
|
|
|
|
#
|
|
|
|
warn()
|
|
|
|
{
|
2000-07-21 03:12:44 +04:00
|
|
|
logger "$0: WARNING: $*"
|
|
|
|
echo 1>&2 "$0: WARNING: $*"
|
1999-04-01 07:58:44 +04:00
|
|
|
}
|
2001-04-04 07:17:19 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# backup_file action file cur backup
|
|
|
|
# Make a backup copy of `file' into `cur', and save the previous
|
|
|
|
# version of `cur' as `backup' or use rcs for archiving.
|
|
|
|
#
|
|
|
|
# This routine checks the value of the backup_uses_rcs variable,
|
|
|
|
# which can be either YES or NO.
|
|
|
|
#
|
|
|
|
# The `action' keyword can be one of the following:
|
|
|
|
#
|
|
|
|
# add `file' is now being backed up (and is possibly
|
|
|
|
# being reentered into the backups system). `cur'
|
|
|
|
# is created and RCS files, if necessary, are
|
|
|
|
# created as well.
|
|
|
|
#
|
|
|
|
# update `file' has changed and needs to be backed up.
|
|
|
|
# If `cur' exists, it is copied to to `back' or
|
|
|
|
# checked into RCS (if the repository file is old),
|
|
|
|
# and then `file' is copied to `cur'. Another RCS
|
|
|
|
# check in done here if RCS is being used.
|
|
|
|
#
|
|
|
|
# remove `file' is no longer being tracked by the backups
|
|
|
|
# system. If RCS is not being used, `cur' is moved
|
|
|
|
# to `back', otherwise an empty file is checked in,
|
|
|
|
# and then `cur' is removed.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
backup_file()
|
|
|
|
{
|
|
|
|
_action=$1
|
|
|
|
_file=$2
|
|
|
|
_cur=$3
|
|
|
|
_back=$4
|
|
|
|
|
|
|
|
if checkyesno backup_uses_rcs; then
|
|
|
|
_msg0="backup archive"
|
|
|
|
_msg1="update"
|
|
|
|
|
2001-05-10 18:04:22 +04:00
|
|
|
# ensure that history file is not locked
|
|
|
|
if [ -f $_cur,v ]; then
|
|
|
|
rcs -q -u -U -M $_cur
|
|
|
|
fi
|
|
|
|
|
2001-04-04 07:17:19 +04:00
|
|
|
# ensure after switching to rcs that the
|
|
|
|
# current backup is not lost
|
|
|
|
if [ -f $_cur ]; then
|
|
|
|
# no archive, or current newer than archive
|
|
|
|
if [ ! -f $_cur,v -o $_cur -nt $_cur,v ]; then
|
2001-05-10 18:04:22 +04:00
|
|
|
ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
|
|
|
|
rcs -q -kb -U $_cur
|
2001-04-04 07:17:19 +04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
case $_action in
|
|
|
|
add|update)
|
|
|
|
cp -p $_file $_cur
|
2001-05-10 18:04:22 +04:00
|
|
|
ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
|
|
|
|
rcs -q -kb -U $_cur
|
2001-04-04 07:17:19 +04:00
|
|
|
chown root:wheel $_cur $_cur,v
|
|
|
|
;;
|
|
|
|
remove)
|
|
|
|
cp /dev/null $_cur
|
2001-05-10 18:04:22 +04:00
|
|
|
ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
|
|
|
|
rcs -q -kb -U $_cur
|
2001-04-04 07:17:19 +04:00
|
|
|
chown root:wheel $_cur $_cur,v
|
|
|
|
rm $_cur
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
case $_action in
|
|
|
|
add|update)
|
|
|
|
if [ -f $_cur ]; then
|
|
|
|
cp -p $_cur $_back
|
|
|
|
fi
|
|
|
|
cp -p $_file $_cur
|
|
|
|
chown root:wheel $_cur
|
|
|
|
;;
|
|
|
|
remove)
|
|
|
|
mv -f $_cur $_back
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|