1 # $NetBSD: rc.subr,v 1.49 2002/05/21 12:31:01 lukem Exp $
2 # $FreeBSD: src/etc/rc.subr,v 1.13 2003/06/09 17:31:06 mtm Exp $
3 # $DragonFly: src/etc/rc.subr,v 1.15 2008/04/05 08:07:11 matthias Exp $
5 # Copyright (c) 1997-2002 The NetBSD Foundation, Inc.
8 # This code is derived from software contributed to The NetBSD Foundation
11 # Redistribution and use in source and binary forms, with or without
12 # modification, are permitted provided that the following conditions
14 # 1. Redistributions of source code must retain the above copyright
15 # notice, this list of conditions and the following disclaimer.
16 # 2. Redistributions in binary form must reproduce the above copyright
17 # notice, this list of conditions and the following disclaimer in the
18 # documentation and/or other materials provided with the distribution.
19 # 3. All advertising materials mentioning features or use of this software
20 # must display the following acknowledgement:
21 # This product includes software developed by the NetBSD
22 # Foundation, Inc. and its contributors.
23 # 4. Neither the name of The NetBSD Foundation nor the names of its
24 # contributors may be used to endorse or promote products derived
25 # from this software without specific prior written permission.
27 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 # POSSIBILITY OF SUCH DAMAGE.
40 # functions used by various rc scripts
44 # Operating System dependent/independent variables
47 if [ "X$_file" = "X" ]; then
51 provide_list=`rcorder -p $_file`
54 SYSCTL_N="${SYSCTL} -n"
55 CMD_OSTYPE="${SYSCTL_N} kern.ostype"
56 OSTYPE=`${CMD_OSTYPE}`
72 # Set the variable name enabling a specific service.
73 # FreeBSD uses ${service}_enable, while NetBSD uses
74 # just the name of the service. For example:
75 # FreeBSD: sendmail_enable="YES"
76 # NetBSD : sendmail="YES"
77 # $1 - if $name is not the base to work of off, specify
93 # $1 should be $rc_arg (start, stop, restart, reload, etc)
94 # $2 return value $RC_*
96 # Set the rcng_* variables associated with elements in provide_list
99 # Returns non-zero when early termination should occur, in which
100 # case the caller should return with a value of $? - 1
104 # Remember, plret is set to the early termination return code + 1,
105 # or 0 if we want to continue the operation.
107 for i in $provide_list; do
109 start$RC_RUNNING|restart$RC_RUNNING)
110 varsym -s rcng_$i=running
112 start$RC_FAILED|restart$RC_FAILED)
113 varsym -s rcng_$i=failed
115 start$RC_DISABLED|restart$RC_DISABLED|reload$RC_DISABLED)
116 varsym -s rcng_$i=disabled
118 start$RC_IRRELEVANT|restart$RC_IRRELEVANT|reload$RC_IRRELEVANT)
119 varsym -s rcng_$i=irrelevant
121 start$RC_CONFIGURED|restart$RC_CONFIGURED)
122 varsym -s rcng_$i=configured
125 varsym -s rcng_$i=disabled
128 varsym -s rcng_$i=irrelevant
131 varsym -s rcng_$i=stopped
140 # $1 should be $rc_arg (start, stop, restart, reload, etc)
141 # $2 return value $RC_*
142 # $3 $rc_force "" not to force, "anything" to force.
144 # The return code is 0 if early termination is not to occur, non-zero if
145 # it is to occur. When early termination is to occur the caller should
146 # return check_early_term()'s return code - 1. That is, early termination
147 # can occur with or without an error.
149 # The provide list will be adjusted when early termination occurs.
158 set_provide_list $1 $2
159 [ -z "$3" ] || return 0
163 set_provide_list $1 $2
164 [ -z "$3" ] || return 0
168 set_provide_list $1 $2
169 [ -z "$3" ] || return 0
179 set_provide_list $1 $2
180 [ -z "$3" ] || return 0
184 # adjust_return_code $1
186 # Convert the return code to an exit code of 0 (success) or 1 (failure)
190 if [ $1 = $RC_FAILED ]; then
197 # force_depend script
198 # Force a service to start. Intended for use by services
199 # to resolve dependency issues. It is assumed the caller
200 # has check to make sure this call is necessary
201 # $1 - filename of script, in /etc/rc.d, to run
207 info "${name} depends on ${_depend}, which will be forced to start."
208 if ! /etc/rc.d/${_depend} forcestart ; then
209 warn "Unable to force ${_depend}. It may already be running."
217 # Test $1 variable, and warn if not set to YES or NO.
218 # Return 0 if it's "yes" (et al), nonzero otherwise.
223 eval _value=\$${1%_enable}
227 eval _value=\$${1%_enable}_enable;
229 debug "checkyesno: $1 is set to $_value."
232 # "yes", "true", "on", or "1"
233 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
237 # "no", "false", "off", or "0"
238 [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
242 warn "\$${1} is not set properly - see rc.conf(5)."
249 # print the list in reverse order
254 for _revfile in $*; do
255 _revlist="$_revfile $_revlist"
261 # mount_critical_filesystems type
262 # Go through the list of critical filesystems as provided in
263 # the rc.conf(5) variable $critical_filesystems_${type}, checking
264 # each one to see if it is mounted, and if it is not, mounting it.
266 mount_critical_filesystems()
268 eval _fslist=\$critical_filesystems_${1}
269 for _fs in $_fslist; do
272 while read what _on on _type type; do
273 if [ $on = $_fs ]; then
277 if [ $_ismounted = no ]; then
278 mount $_fs >/dev/null 2>&1
285 # check_pidfile pidfile procname [interpreter]
286 # Parses the first line of pidfile for a PID, and ensures
287 # that the process is running and matches procname.
288 # Prints the matching PID upon success, nothing otherwise.
289 # interpreter is optional; see _find_processes() for details.
296 if [ -z "$_pidfile" -o -z "$_procname" ]; then
297 err 3 'USAGE: check_pidfile pidfile procname [interpreter]'
299 if [ ! -f $_pidfile ]; then
300 debug "pid file {$_pidfile): not readable."
303 read _pid _junk < $_pidfile
304 if [ -z "$_pid" ]; then
305 debug "pid file {$_pidfile): no pid in file."
308 _find_processes $_procname ${_interpreter:-.} '-p '"$_pid"
312 # check_process procname [interpreter]
313 # Ensures that a process (or processes) named procname is running.
314 # Prints a list of matching PIDs.
315 # interpreter is optional; see _find_processes() for details.
321 if [ -z "$_procname" ]; then
322 err 3 'USAGE: check_process procname [interpreter]'
324 _find_processes $_procname ${_interpreter:-.} '-ax'
328 # _find_processes procname interpreter psargs
329 # Search for procname in the output of ps generated by psargs.
330 # Prints the PIDs of any matching processes, space separated.
332 # If interpreter == ".", check the following variations of procname
333 # against the first word of each command:
335 # `basename procname`
336 # `basename procname` + ":"
337 # "(" + `basename procname` + ")"
339 # If interpreter != ".", read the first line of procname, remove the
340 # leading #!, normalise whitespace, append procname, and attempt to
341 # match that against each command, either as is, or with extra words
346 if [ $# -ne 3 ]; then
347 err 3 'USAGE: _find_processes procname interpreter psargs'
354 if [ $_interpreter != "." ]; then # an interpreted script
355 read _interp < $_procname # read interpreter name
356 _interp=${_interp#\#!} # strip #!
358 if [ $_interpreter != $1 ]; then
359 warn "\$command_interpreter $_interpreter != $1"
361 _interp="$* $_procname" # cleanup spaces, add _procname
362 _interpbn="$1" # the interpreter binary
364 _fp_match='case "$_argv" in
365 "${_interpbn##*/}: "$_procname*|${_interp}|"${_interp} "*)'
366 else # a normal daemon
367 _procnamebn=${_procname##*/}
368 _fp_args='_arg0 _argv'
369 _fp_match='case "$_arg0" in
370 $_procname|$_procnamebn|${_procnamebn}:|"(${_procnamebn})")'
374 ps -o "pid,command" '"$_psargs"' |
375 while read _npid '"$_fp_args"'; do
379 esac ; '"$_fp_match"'
380 echo -n "$_pref$_npid" ;
386 # debug "in _find_processes: proccheck is ($_proccheck)."
391 # wait_for_pids pid [pid ...]
392 # spins until none of the pids exist
397 if [ -z "$_list" ]; then
404 if kill -0 $_j 2>/dev/null; then
405 _nlist="${_nlist}${_nlist:+ }$_j"
408 if [ -z "$_nlist" ]; then
412 echo -n ${_prefix:-"Waiting for PIDS: "}$_list
416 if [ -n "$_prefix" ]; then
422 # run_rc_command argument
423 # Search for argument in the list of supported commands, which is:
424 # "start stop restart rcvar status poll ${extra_commands}"
425 # If there's a match, run ${argument}_cmd or the default method
428 # If argument has a given prefix, then change the operation as follows:
431 # fast Skip the pid check, and set rc_fast=yes
432 # force Set ${rcvar} to YES, and set rc_force=yes
433 # one Set ${rcvar} to YES
435 # The following globals are used:
437 # Name Needed Purpose
438 # ---- ------ -------
439 # provide_list (gen) list of keywords provided by current rcng file
441 # name y Name of script.
443 # command n Full path to command.
444 # Not needed if ${rc_arg}_cmd is set for
447 # command_args n Optional args/shell directives for command.
449 # command_interpreter n If not empty, command is interpreted, so
450 # call check_{pidfile,process}() appropriately.
452 # extra_commands n List of extra commands supported.
454 # pidfile n If set, use check_pidfile $pidfile $command,
455 # otherwise use check_process $command.
456 # In either case, only check if $command is set.
458 # procname n Process name to check for instead of $command.
460 # rcvar n This is checked with checkyesno to determine
461 # if the action should be run.
463 # ${name}_chroot n Directory to chroot to before running ${command}
464 # Requires /usr to be mounted.
466 # ${name}_chdir n Directory to cd to before running ${command}
467 # (if not using ${name}_chroot).
469 # ${name}_flags n Arguments to call ${command} with.
470 # NOTE: $flags from the parent environment
471 # can be used to override this.
473 # ${name}_nice n Nice level to run ${command} at.
475 # ${name}_user n User to run ${command} as, using su(1) if not
476 # using ${name}_chroot.
477 # Requires /usr to be mounted.
479 # ${name}_group n Group to run chrooted ${command} as.
480 # Requires /usr to be mounted.
482 # ${name}_groups n Comma separated list of supplementary groups
483 # to run the chrooted ${command} with.
484 # Requires /usr to be mounted.
486 # ${rc_arg}_cmd n If set, use this as the method when invoked;
487 # Otherwise, use default command (see below)
489 # ${rc_arg}_precmd n If set, run just before performing the
490 # ${rc_arg}_cmd method in the default
491 # operation (i.e, after checking for required
492 # bits and process (non)existence).
493 # If this completes with a non-zero exit code,
494 # don't run ${rc_arg}_cmd.
496 # ${rc_arg}_postcmd n If set, run just after performing the
497 # ${rc_arg}_cmd method, if that method
498 # returned a zero exit code.
500 # required_dirs n If set, check for the existence of the given
501 # directories before running the default
504 # required_files n If set, check for the readability of the given
505 # files before running the default (re)start
508 # required_vars n If set, perform checkyesno on each of the
509 # listed variables before running the default
512 # Default behaviour for a given argument, if no override method is
515 # Argument Default behaviour
516 # -------- -----------------
517 # start if !running && checkyesno ${rcvar}
521 # rc_pid=$(check_pidfile $pidfile $command)
523 # rc_pid=$(check_process $command)
524 # kill $sig_stop $rc_pid
525 # wait_for_pids $rc_pid
526 # ($sig_stop defaults to TERM.)
528 # reload Similar to stop, except use $sig_reload instead,
529 # and doesn't wait_for_pids.
530 # $sig_reload defaults to HUP.
532 # restart Run `stop' then `start'.
534 # status Show if ${command} is running, etc.
536 # poll Wait for ${command} to exit.
538 # rcvar Display what rc.conf variable is used (if any).
540 # Variables available to methods, and after run_rc_command() has
545 # rc_arg Argument to command, after fast/force/one processing
548 # rc_flags Flags to start the default command with.
549 # Defaults to ${name}_flags, unless overridden
550 # by $flags from the environment.
551 # This variable may be changed by the precmd method.
553 # rc_pid PID of command (if appropriate)
555 # rc_fast Not empty if "fast" was provided (q.v.)
557 # rc_force Not empty if "force" was provided (q.v.)
565 fast*) # "fast" prefix; don't check pid
566 rc_arg=${rc_arg#fast}
568 force*) # "force" prefix; always start
569 rc_arg=${rc_arg#force}
571 one*) # "one" prefix; set ${rcvar}=yes
575 set_provide_list $rc_arg $RC_CONFIGURED
583 if [ -z "$name" ]; then
584 err 3 'run_rc_command: $name is not set.'
588 fast*) # "fast" prefix; don't check pid
589 rc_arg=${rc_arg#fast}
592 force*) # "force" prefix; always start
593 rc_arg=${rc_arg#force}
595 if [ -n "${rcvar}" ]; then
599 one*) # "one" prefix; set ${rcvar}=yes
601 if [ -n "${rcvar}" ]; then
606 eval _override_command=\$${name}_program
607 if [ -n "$_override_command" ]; then
608 command=$_override_command
611 _keywords="start stop restart rcvar $extra_commands"
614 _procname=${procname:-${command}}
616 # setup pid check command if not fast
617 if [ -z "$rc_fast" -a -n "$_procname" ]; then
618 if [ -n "$pidfile" ]; then
619 _pidcmd='rc_pid=$(check_pidfile '"$pidfile $_procname $command_interpreter"')'
621 _pidcmd='rc_pid=$(check_process '"$_procname $command_interpreter"')'
623 if [ -n "$_pidcmd" ]; then
624 _keywords="${_keywords} status poll"
628 if [ -z "$rc_arg" ]; then
629 rc_usage "$_keywords"
632 if [ -n "$flags" ]; then # allow override from environment
635 eval rc_flags=\$${name}_flags
637 eval _chdir=\$${name}_chdir _chroot=\$${name}_chroot \
638 _nice=\$${name}_nice _user=\$${name}_user \
639 _group=\$${name}_group _groups=\$${name}_groups
641 if [ -n "$_user" ]; then # unset $_user if running as that user
642 if [ "$_user" = "$(id -un)" ]; then
647 # if ${rcvar} is set, and $1 is not
649 # checkyesno ${rcvar}
650 # and return if that failed
652 if [ -n "${rcvar}" -a "$rc_arg" != "rcvar" ]; then
653 if ! checkyesno ${rcvar}; then
654 set_provide_list $rc_arg $RC_DISABLED
659 eval $_pidcmd # determine the pid if necessary
661 for _elem in $_keywords; do
662 if [ "$_elem" != "$rc_arg" ]; then
666 # if there's a custom ${XXX_cmd},
667 # run that instead of the default
669 eval _cmd=\$${rc_arg}_cmd _precmd=\$${rc_arg}_precmd \
670 _postcmd=\$${rc_arg}_postcmd
671 if [ -n "$_cmd" ]; then
672 # if the precmd failed and force
675 if [ -n "$_precmd" ]; then
676 debug "run_rc_command: evaluating ${_precmd}()."
680 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
683 if [ -n "$_cmd" ]; then
684 debug "run_rc_command: evaluating ${_cmd}()."
687 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
690 if [ -n "$_postcmd" ]; then
691 debug "run_rc_command: evaluating ${_postcmd}()."
694 check_early_term $rc_arg $_return "" || return $(($?-1))
696 set_provide_list $rc_arg $_return
697 adjust_return_code $_return
701 case "$rc_arg" in # default operations...
704 if [ -n "$rc_pid" ]; then
705 echo "${name} is running as pid $rc_pid."
707 echo "${name} is not running."
713 if [ -n "$rc_pid" ]; then
714 echo "${name} already running? (pid=$rc_pid)."
718 if [ ! -x $command ]; then
719 info "run_rc_command: cannot run ($command)."
720 set_provide_list $rc_arg $RC_FAILED
721 adjust_return_code $RC_FAILED
725 # check for required variables,
726 # directories, and files
728 for _f in $required_vars; do
729 if ! checkyesno $_f; then
730 warn "\$${_f} is not set."
731 if [ -z "$rc_force" ]; then
732 set_provide_list $rc_arg $RC_FAILED
733 adjust_return_code $RC_FAILED
738 for _f in $required_dirs; do
739 if [ ! -d "${_f}/." ]; then
740 warn "${_f} is not a directory."
741 if [ -z "$rc_force" ]; then
742 set_provide_list $rc_arg $RC_FAILED
743 adjust_return_code $RC_FAILED
748 for _f in $required_files; do
749 if [ ! -r "${_f}" ]; then
750 warn "${_f} is not readable."
751 if [ -z "$rc_force" ]; then
752 set_provide_list $rc_arg $RC_FAILED
753 adjust_return_code $RC_FAILED
759 # if the precmd failed and force
762 if [ -n "${_precmd}" ]; then
763 debug "run_rc_command: evaluating ${_precmd}()."
766 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
769 # setup the command to run, and run it
771 echo "Starting ${name}."
772 if [ -n "$_chroot" ]; then
774 ${_nice:+nice -n $_nice }\
775 chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\
776 $_chroot $command $rc_flags $command_args"
779 ${_chdir:+cd $_chdir; }\
780 ${_nice:+nice -n $_nice }\
781 $command $rc_flags $command_args"
782 if [ -n "$_user" ]; then
783 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
787 # if the cmd failed and force
790 debug "run_rc_command: _doit: $_doit"
793 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
794 # finally, run postcmd
796 if [ -n "${_postcmd}" ]; then
797 debug "run_rc_command: evaluating ${_postcmd}()."
803 if [ -z "$rc_pid" ]; then
804 if [ -n "$pidfile" ]; then
806 "${name} not running? (check $pidfile)."
808 echo "${name} not running?"
810 set_provide_list $rc_arg $RC_STOPPED
814 # if the precmd failed and force
817 if [ -n "$_precmd" ]; then
820 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
823 # send the signal to stop
825 echo "Stopping ${name}."
826 _doit="kill -${sig_stop:-TERM} $rc_pid"
827 if [ -n "$_user" ]; then
828 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
831 # if the stop cmd failed and force
836 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
837 # wait for the command to exit,
840 wait_for_pids $rc_pid
841 if [ -n "$_postcmd" ]; then
848 if [ -z "$rc_pid" ]; then
849 if [ -n "$pidfile" ]; then
851 "${name} not running? (check $pidfile)."
853 echo "${name} not running?"
855 set_provide_list $rc_arg $RC_FAILED
858 echo "Reloading ${name} config files."
859 if [ -n "$_precmd" ]; then
862 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
864 _doit="kill -${sig_reload:-HUP} $rc_pid"
865 if [ -n "$_user" ]; then
866 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
870 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
871 if [ -n "$_postcmd" ]; then
878 if [ -n "$_precmd" ]; then
881 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
883 # prevent restart being called more
884 # than once by any given script
886 if [ -n "$_rc_restart_done" ]; then
891 ( $0 ${rc_force:+force}stop )
892 $0 ${rc_force:+force}start
895 if [ -n "$_postcmd" ]; then
897 adjust_return_code $?
900 # Do not set_provide_list(), the start command above
901 # will have done it for us and we do not know the
902 # actual RC code to base a setting on here.
908 if [ -n "$rc_pid" ]; then
909 wait_for_pids $rc_pid
915 if [ -n "$rcvar" ]; then
916 if checkyesno ${rcvar}; then
917 echo "\$${rcvar}=YES"
925 rc_usage "$_keywords"
929 set_provide_list $rc_arg $_return
930 adjust_return_code $_return
934 echo 1>&2 "$0: unknown directive '$rc_arg'."
935 rc_usage "$_keywords"
940 # run_rc_script file arg
941 # Start the script `file' with `arg', and correctly handle the
942 # return value from the script. If `file' ends with `.sh', it's
943 # sourced into the current environment. If `file' appears to be
944 # a backup or scratch file, ignore it. Otherwise if it's
945 # executable run as a child process.
951 if [ -z "$_file" -o -z "$_arg" ]; then
952 err 3 'USAGE: run_rc_script file arg'
955 trap "echo 'Reboot interrupted'; exit 1" 3
957 unset name command command_args command_interpreter \
958 extra_commands pidfile procname \
959 rcvar required_dirs required_files required_vars
960 eval unset ${_arg}_cmd ${_arg}_precmd ${_arg}_postcmd
963 *.sh) # run in current shell
966 *[~#]|*.OLD|*.orig) # scratch file; skip
967 warn "Ignoring scratch file $_file"
970 if [ -x $_file ]; then
971 if [ -n "$rc_fast_and_loose" ]; then
974 ( trap "echo 'Reboot interrupted'; exit 1" 3
975 set $_arg ; . $_file )
983 # Change every $src in $str to $dst.
984 # Useful when /usr is not yet mounted and we cannot use tr(1), sed(1) nor
988 local _str _src _dst _out _com
995 for _com in ${_str}; do
996 if [ -z "${_out}" ]; then
999 _out="${_out}${_dst}${_com}"
1007 # Source in the configuration file for a given command.
1012 if [ -z "$_command" ]; then
1013 err 3 'USAGE: load_rc_config command'
1016 if [ -z "$_rc_conf_loaded" ]; then
1017 if [ -r /etc/defaults/rc.conf ]; then
1018 debug "Sourcing /etc/defaults/rc.conf"
1019 . /etc/defaults/rc.conf
1021 elif [ -r /etc/rc.conf ]; then
1022 debug "Sourcing /etc/rc.conf (/etc/defaults/rc.conf doesn't exist)."
1027 if [ -f /etc/rc.conf.d/"$_command" ]; then
1028 debug "Sourcing /etc/rc.conf.d/${_command}"
1029 . /etc/rc.conf.d/"$_command"
1032 # XXX - Deprecated variable name support
1034 [ -n "$portmap_enable" ] && rpcbind_enable="$portmap_enable"
1035 [ -n "$portmap_program" ] && rpcbind_program="$portmap_program"
1036 [ -n "$portmap_flags" ] && rpcbind_flags="$portmap_flags"
1037 [ -n "$single_mountd_enable" ] && mountd_enable="$single_mountd_enable"
1038 [ -n "$dhcp_program" ] && dhclient_program="$dhcp_program"
1039 [ -n "$dhcp_flags" ] && dhclient_flags="$dhcp_flags"
1045 # Print a usage string for $0, with `commands' being a list of
1050 echo -n 1>&2 "Usage: $0 [fast|force|one]("
1054 echo -n 1>&2 "$_sep$_elem"
1062 # err exitval message
1063 # Display message to stderr and log to the syslog, and exit with exitval.
1070 if [ -x /usr/bin/logger ]; then
1071 logger "$0: ERROR: $*"
1073 echo 1>&2 "$0: ERROR: $*"
1079 # Display message to stderr and log to the syslog.
1083 if [ -x /usr/bin/logger ]; then
1084 logger "$0: WARNING: $*"
1086 echo 1>&2 "$0: WARNING: $*"
1091 # Display informational message to stdout and log to syslog.
1096 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
1097 if [ -x /usr/bin/logger ]; then
1098 logger "$0: INFO: $*"
1107 # If debugging is enabled in rc.conf output message to stderr.
1108 # BEWARE that you don't call any subroutine that itself calls this
1114 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
1115 if [ -x /usr/bin/logger ]; then
1116 logger "$0: INFO: $*"
1118 echo 1>&2 "$0: DEBUG: $*"
1124 # backup_file action file cur backup
1125 # Make a backup copy of `file' into `cur', and save the previous
1126 # version of `cur' as `backup' or use rcs for archiving.
1128 # This routine checks the value of the backup_uses_rcs variable,
1129 # which can be either YES or NO.
1131 # The `action' keyword can be one of the following:
1133 # add `file' is now being backed up (and is possibly
1134 # being reentered into the backups system). `cur'
1135 # is created and RCS files, if necessary, are
1138 # update `file' has changed and needs to be backed up.
1139 # If `cur' exists, it is copied to to `back' or
1140 # checked into RCS (if the repository file is old),
1141 # and then `file' is copied to `cur'. Another RCS
1142 # check in done here if RCS is being used.
1144 # remove `file' is no longer being tracked by the backups
1145 # system. If RCS is not being used, `cur' is moved
1146 # to `back', otherwise an empty file is checked in,
1147 # and then `cur' is removed.
1157 if checkyesno backup_uses_rcs; then
1158 _msg0="backup archive"
1161 # ensure that history file is not locked
1162 if [ -f $_cur,v ]; then
1163 rcs -q -u -U -M $_cur
1166 # ensure after switching to rcs that the
1167 # current backup is not lost
1168 if [ -f $_cur ]; then
1169 # no archive, or current newer than archive
1170 if [ ! -f $_cur,v -o $_cur -nt $_cur,v ]; then
1171 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1179 cp -p $_cpfile $_cur
1180 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1183 chown root:wheel $_cur $_cur,v
1187 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1189 chown root:wheel $_cur $_cur,v
1196 if [ -f $_cur ]; then
1199 cp -p $_cpfile $_cur
1200 chown root:wheel $_cur
1209 # devfs_mount_jail dir
1210 # Mounts a devfs file system appropriate for jails
1211 # on the directory dir.
1212 # This function returns non-zero if an error occurs.
1218 _me="devfs_mount_jail"
1220 if ! devfs_domount "$jdev" $rs; then
1221 warn "$_me: devfs was not mounted on $jdev"
1228 # Mount devfs on dir.
1229 # Returns 0 on success.
1235 _me="devfs_domount()"
1237 if [ -z "$devdir" ]; then
1238 warn "$_me: you must specify a mount-point"
1242 debug "$_me: mount-point is ($devdir)"
1243 if ! mount -t devfs devfs "$devdir"; then
1244 warn "$_me: Unable to mount devfs on $devdir"