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.11 2004/05/31 17:50:39 dillon 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
88 echo ${base_var}_enable
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 debug "checkyesno: $1 is set to $_value."
226 # "yes", "true", "on", or "1"
227 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
231 # "no", "false", "off", or "0"
232 [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
236 warn "\$${1} is not set properly - see rc.conf(5)."
243 # print the list in reverse order
248 for _revfile in $*; do
249 _revlist="$_revfile $_revlist"
255 # mount_critical_filesystems type
256 # Go through the list of critical filesystems as provided in
257 # the rc.conf(5) variable $critical_filesystems_${type}, checking
258 # each one to see if it is mounted, and if it is not, mounting it.
260 mount_critical_filesystems()
262 eval _fslist=\$critical_filesystems_${1}
263 for _fs in $_fslist; do
266 while read what _on on _type type; do
267 if [ $on = $_fs ]; then
271 if [ $_ismounted = no ]; then
272 mount $_fs >/dev/null 2>&1
279 # check_pidfile pidfile procname [interpreter]
280 # Parses the first line of pidfile for a PID, and ensures
281 # that the process is running and matches procname.
282 # Prints the matching PID upon success, nothing otherwise.
283 # interpreter is optional; see _find_processes() for details.
290 if [ -z "$_pidfile" -o -z "$_procname" ]; then
291 err 3 'USAGE: check_pidfile pidfile procname [interpreter]'
293 if [ ! -f $_pidfile ]; then
294 debug "pid file {$_pidfile): not readable."
297 read _pid _junk < $_pidfile
298 if [ -z "$_pid" ]; then
299 debug "pid file {$_pidfile): no pid in file."
302 _find_processes $_procname ${_interpreter:-.} '-p '"$_pid"
306 # check_process procname [interpreter]
307 # Ensures that a process (or processes) named procname is running.
308 # Prints a list of matching PIDs.
309 # interpreter is optional; see _find_processes() for details.
315 if [ -z "$_procname" ]; then
316 err 3 'USAGE: check_process procname [interpreter]'
318 _find_processes $_procname ${_interpreter:-.} '-ax'
322 # _find_processes procname interpreter psargs
323 # Search for procname in the output of ps generated by psargs.
324 # Prints the PIDs of any matching processes, space separated.
326 # If interpreter == ".", check the following variations of procname
327 # against the first word of each command:
329 # `basename procname`
330 # `basename procname` + ":"
331 # "(" + `basename procname` + ")"
333 # If interpreter != ".", read the first line of procname, remove the
334 # leading #!, normalise whitespace, append procname, and attempt to
335 # match that against each command, either as is, or with extra words
340 if [ $# -ne 3 ]; then
341 err 3 'USAGE: _find_processes procname interpreter psargs'
348 if [ $_interpreter != "." ]; then # an interpreted script
349 read _interp < $_procname # read interpreter name
350 _interp=${_interp#\#!} # strip #!
352 if [ $_interpreter != $1 ]; then
353 warn "\$command_interpreter $_interpreter != $1"
355 _interp="$* $_procname" # cleanup spaces, add _procname
357 _fp_match='case "$_argv" in
358 ${_interp}|"${_interp} "*)'
359 else # a normal daemon
360 _procnamebn=${_procname##*/}
361 _fp_args='_arg0 _argv'
362 _fp_match='case "$_arg0" in
363 $_procname|$_procnamebn|${_procnamebn}:|"(${_procnamebn})")'
367 ps -o "pid,command" '"$_psargs"' |
368 while read _npid '"$_fp_args"'; do
372 esac ; '"$_fp_match"'
373 echo -n "$_pref$_npid" ;
379 # debug "in _find_processes: proccheck is ($_proccheck)."
384 # wait_for_pids pid [pid ...]
385 # spins until none of the pids exist
390 if [ -z "$_list" ]; then
397 if kill -0 $_j 2>/dev/null; then
398 _nlist="${_nlist}${_nlist:+ }$_j"
401 if [ -z "$_nlist" ]; then
405 echo -n ${_prefix:-"Waiting for PIDS: "}$_list
409 if [ -n "$_prefix" ]; then
415 # run_rc_command argument
416 # Search for argument in the list of supported commands, which is:
417 # "start stop restart rcvar status poll ${extra_commands}"
418 # If there's a match, run ${argument}_cmd or the default method
421 # If argument has a given prefix, then change the operation as follows:
424 # fast Skip the pid check, and set rc_fast=yes
425 # force Set ${rcvar} to YES, and set rc_force=yes
427 # The following globals are used:
429 # Name Needed Purpose
430 # ---- ------ -------
431 # provide_list (gen) list of keywords provided by current rcng file
433 # name y Name of script.
435 # command n Full path to command.
436 # Not needed if ${rc_arg}_cmd is set for
439 # command_args n Optional args/shell directives for command.
441 # command_interpreter n If not empty, command is interpreted, so
442 # call check_{pidfile,process}() appropriately.
444 # extra_commands n List of extra commands supported.
446 # pidfile n If set, use check_pidfile $pidfile $command,
447 # otherwise use check_process $command.
448 # In either case, only check if $command is set.
450 # procname n Process name to check for instead of $command.
452 # rcvar n This is checked with checkyesno to determine
453 # if the action should be run.
455 # ${name}_chroot n Directory to chroot to before running ${command}
456 # Requires /usr to be mounted.
458 # ${name}_chdir n Directory to cd to before running ${command}
459 # (if not using ${name}_chroot).
461 # ${name}_flags n Arguments to call ${command} with.
462 # NOTE: $flags from the parent environment
463 # can be used to override this.
465 # ${name}_nice n Nice level to run ${command} at.
467 # ${name}_user n User to run ${command} as, using su(1) if not
468 # using ${name}_chroot.
469 # Requires /usr to be mounted.
471 # ${name}_group n Group to run chrooted ${command} as.
472 # Requires /usr to be mounted.
474 # ${name}_groups n Comma separated list of supplementary groups
475 # to run the chrooted ${command} with.
476 # Requires /usr to be mounted.
478 # ${rc_arg}_cmd n If set, use this as the method when invoked;
479 # Otherwise, use default command (see below)
481 # ${rc_arg}_precmd n If set, run just before performing the
482 # ${rc_arg}_cmd method in the default
483 # operation (i.e, after checking for required
484 # bits and process (non)existence).
485 # If this completes with a non-zero exit code,
486 # don't run ${rc_arg}_cmd.
488 # ${rc_arg}_postcmd n If set, run just after performing the
489 # ${rc_arg}_cmd method, if that method
490 # returned a zero exit code.
492 # required_dirs n If set, check for the existence of the given
493 # directories before running the default
496 # required_files n If set, check for the readability of the given
497 # files before running the default (re)start
500 # required_vars n If set, perform checkyesno on each of the
501 # listed variables before running the default
504 # Default behaviour for a given argument, if no override method is
507 # Argument Default behaviour
508 # -------- -----------------
509 # start if !running && checkyesno ${rcvar}
513 # rc_pid=$(check_pidfile $pidfile $command)
515 # rc_pid=$(check_process $command)
516 # kill $sig_stop $rc_pid
517 # wait_for_pids $rc_pid
518 # ($sig_stop defaults to TERM.)
520 # reload Similar to stop, except use $sig_reload instead,
521 # and doesn't wait_for_pids.
522 # $sig_reload defaults to HUP.
524 # restart Run `stop' then `start'.
526 # status Show if ${command} is running, etc.
528 # poll Wait for ${command} to exit.
530 # rcvar Display what rc.conf variable is used (if any).
532 # Variables available to methods, and after run_rc_command() has
537 # rc_arg Argument to command, after fast/force processing
540 # rc_flags Flags to start the default command with.
541 # Defaults to ${name}_flags, unless overridden
542 # by $flags from the environment.
543 # This variable may be changed by the precmd method.
545 # rc_pid PID of command (if appropriate)
547 # rc_fast Not empty if "fast" was provided (q.v.)
549 # rc_force Not empty if "force" was provided (q.v.)
557 fast*) # "fast" prefix; don't check pid
558 rc_arg=${rc_arg#fast}
560 force*) # "force prefix; always start
561 rc_arg=${rc_arg#force}
564 set_provide_list $rc_arg $RC_CONFIGURED
572 if [ -z "$name" ]; then
573 err 3 'run_rc_command: $name is not set.'
577 fast*) # "fast" prefix; don't check pid
578 rc_arg=${rc_arg#fast}
581 force*) # "force prefix; always start
582 rc_arg=${rc_arg#force}
584 if [ -n "${rcvar}" ]; then
590 eval _overide_command=\$${name}_program
591 if [ -n "$_overide_command" ]; then
592 command=$_overide_command
595 _keywords="start stop restart rcvar $extra_commands"
598 _procname=${procname:-${command}}
600 # setup pid check command if not fast
601 if [ -z "$rc_fast" -a -n "$_procname" ]; then
602 if [ -n "$pidfile" ]; then
603 _pidcmd='rc_pid=$(check_pidfile '"$pidfile $_procname $command_interpreter"')'
605 _pidcmd='rc_pid=$(check_process '"$_procname $command_interpreter"')'
607 if [ -n "$_pidcmd" ]; then
608 _keywords="${_keywords} status poll"
612 if [ -z "$rc_arg" ]; then
613 rc_usage "$_keywords"
616 if [ -n "$flags" ]; then # allow override from environment
619 eval rc_flags=\$${name}_flags
621 eval _chdir=\$${name}_chdir _chroot=\$${name}_chroot \
622 _nice=\$${name}_nice _user=\$${name}_user \
623 _group=\$${name}_group _groups=\$${name}_groups
625 if [ -n "$_user" ]; then # unset $_user if running as that user
626 if [ "$_user" = "$(id -un)" ]; then
631 # if ${rcvar} is set, and $1 is not
633 # checkyesno ${rcvar}
634 # and return if that failed
636 if [ -n "${rcvar}" -a "$rc_arg" != "rcvar" ]; then
637 if ! checkyesno ${rcvar}; then
638 set_provide_list $rc_arg $RC_DISABLED
643 eval $_pidcmd # determine the pid if necessary
645 for _elem in $_keywords; do
646 if [ "$_elem" != "$rc_arg" ]; then
650 # if there's a custom ${XXX_cmd},
651 # run that instead of the default
653 eval _cmd=\$${rc_arg}_cmd _precmd=\$${rc_arg}_precmd \
654 _postcmd=\$${rc_arg}_postcmd
655 if [ -n "$_cmd" ]; then
656 # if the precmd failed and force
659 if [ -n "$_precmd" ]; then
660 debug "run_rc_command: evaluating ${_precmd}()."
664 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
667 if [ -n "$_cmd" ]; then
668 debug "run_rc_command: evaluating ${_cmd}()."
671 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
674 if [ -n "$_postcmd" ]; then
675 debug "run_rc_command: evaluating ${_postcmd}()."
678 check_early_term $rc_arg $_return "" || return $(($?-1))
680 set_provide_list $rc_arg $_return
681 adjust_return_code $_return
685 case "$rc_arg" in # default operations...
688 if [ -n "$rc_pid" ]; then
689 echo "${name} is running as pid $rc_pid."
691 echo "${name} is not running."
697 if [ -n "$rc_pid" ]; then
698 echo "${name} already running? (pid=$rc_pid)."
702 if [ ! -x $command ]; then
703 info "run_rc_command: cannot run ($command)."
704 set_provide_list $rc_arg $RC_FAILED
705 adjust_return_code $RC_FAILED
709 # check for required variables,
710 # directories, and files
712 for _f in $required_vars; do
713 if ! checkyesno $_f; then
714 warn "\$${_f} is not set."
715 if [ -z "$rc_force" ]; then
716 set_provide_list $rc_arg $RC_FAILED
717 adjust_return_code $RC_FAILED
722 for _f in $required_dirs; do
723 if [ ! -d "${_f}/." ]; then
724 warn "${_f} is not a directory."
725 if [ -z "$rc_force" ]; then
726 set_provide_list $rc_arg $RC_FAILED
727 adjust_return_code $RC_FAILED
732 for _f in $required_files; do
733 if [ ! -r "${_f}" ]; then
734 warn "${_f} is not readable."
735 if [ -z "$rc_force" ]; then
736 set_provide_list $rc_arg $RC_FAILED
737 adjust_return_code $RC_FAILED
743 # if the precmd failed and force
746 if [ -n "${_precmd}" ]; then
747 debug "run_rc_command: evaluating ${_precmd}()."
750 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
753 # setup the command to run, and run it
755 echo "Starting ${name}."
756 if [ -n "$_chroot" ]; then
758 ${_nice:+nice -n $_nice }\
759 chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\
760 $_chroot $command $rc_flags $command_args"
763 ${_chdir:+cd $_chdir; }\
764 ${_nice:+nice -n $_nice }\
765 $command $rc_flags $command_args"
766 if [ -n "$_user" ]; then
767 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
771 # if the cmd failed and force
774 debug "run_rc_command: _doit: $_doit"
777 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
778 # finally, run postcmd
780 if [ -n "${_postcmd}" ]; then
781 debug "run_rc_command: evaluating ${_postcmd}()."
787 if [ -z "$rc_pid" ]; then
788 if [ -n "$pidfile" ]; then
790 "${name} not running? (check $pidfile)."
792 echo "${name} not running?"
794 set_provide_list $rc_arg $RC_STOPPED
798 # if the precmd failed and force
801 if [ -n $_precmd ]; then
804 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
807 # send the signal to stop
809 echo "Stopping ${name}."
810 _doit="kill -${sig_stop:-TERM} $rc_pid"
811 if [ -n "$_user" ]; then
812 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
815 # if the stop cmd failed and force
820 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
821 # wait for the command to exit,
824 wait_for_pids $rc_pid
825 if [ -n "$_postcmd" ]; then
832 if [ -z "$rc_pid" ]; then
833 if [ -n "$pidfile" ]; then
835 "${name} not running? (check $pidfile)."
837 echo "${name} not running?"
839 set_provide_list $rc_arg $RC_FAILED
842 echo "Reloading ${name} config files."
843 if [ -n "$_precmd" ]; then
846 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
848 _doit="kill -${sig_reload:-HUP} $rc_pid"
849 if [ -n "$_user" ]; then
850 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
854 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
855 if [ -n "$_postcmd" ]; then
862 if [ -n "$_precmd" ]; then
865 check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
867 # prevent restart being called more
868 # than once by any given script
870 if [ -n "$_rc_restart_done" ]; then
875 ( $0 ${rc_force:+force}stop )
876 $0 ${rc_force:+force}start
879 if [ -n "$_postcmd" ]; then
881 adjust_return_code $?
884 # Do not set_provide_list(), the start command above
885 # will have done it for us and we do not know the
886 # actual RC code to base a setting on here.
892 if [ -n "$rc_pid" ]; then
893 wait_for_pids $rc_pid
899 if [ -n "$rcvar" ]; then
900 if checkyesno ${rcvar}; then
901 echo "\$${rcvar}=YES"
909 rc_usage "$_keywords"
913 set_provide_list $rc_arg $_return
914 adjust_return_code $_return
918 echo 1>&2 "$0: unknown directive '$rc_arg'."
919 rc_usage "$_keywords"
924 # run_rc_script file arg
925 # Start the script `file' with `arg', and correctly handle the
926 # return value from the script. If `file' ends with `.sh', it's
927 # sourced into the current environment. If `file' appears to be
928 # a backup or scratch file, ignore it. Otherwise if it's
929 # executable run as a child process.
935 if [ -z "$_file" -o -z "$_arg" ]; then
936 err 3 'USAGE: run_rc_script file arg'
939 trap "echo 'Reboot interrupted'; exit 1" 3
941 unset name command command_args command_interpreter \
942 extra_commands pidfile procname \
943 rcvar required_dirs required_files required_vars
944 eval unset ${_arg}_cmd ${_arg}_precmd ${_arg}_postcmd
947 *.sh) # run in current shell
950 *[~#]|*.OLD|*.orig) # scratch file; skip
951 warn "Ignoring scratch file $_file"
954 if [ -x $_file ]; then
955 if [ -n "$rc_fast_and_loose" ]; then
958 ( trap "echo 'Reboot interrupted'; exit 1" 3
959 set $_arg ; . $_file )
968 # Source in the configuration file for a given command.
973 if [ -z "$_command" ]; then
974 err 3 'USAGE: load_rc_config command'
977 if [ -z "$_rc_conf_loaded" ]; then
978 if [ -r /etc/defaults/rc.conf ]; then
979 debug "Sourcing /etc/defaults/rc.conf"
980 . /etc/defaults/rc.conf
982 elif [ -r /etc/rc.conf ]; then
983 debug "Sourcing /etc/rc.conf (/etc/defaults/rc.conf doesn't exist)."
988 if [ -f /etc/rc.conf.d/"$_command" ]; then
989 debug "Sourcing /etc/rc.conf.d/${_command}"
990 . /etc/rc.conf.d/"$_command"
993 # XXX - Deprecated variable name support
995 [ -n "$portmap_enable" ] && rpcbind_enable="$portmap_enable"
996 [ -n "$portmap_program" ] && rpcbind_program="$portmap_program"
997 [ -n "$portmap_flags" ] && rpcbind_flags="$portmap_flags"
998 [ -n "$single_mountd_enable" ] && mountd_enable="$single_mountd_enable"
999 [ -n "$xntpd_enable" ] && ntpd_enable="$xntpd_enable"
1000 [ -n "$xntpd_program" ] && ntpd_program="$xntpd_program"
1001 [ -n "$xntpd_flags" ] && ntpd_flags="$xntpd_flags"
1002 [ -n "$dhcp_program" ] && dhclient_program="$dhcp_program"
1003 [ -n "$dhcp_flags" ] && dhclient_flags="$dhcp_flags"
1009 # Print a usage string for $0, with `commands' being a list of
1014 echo -n 1>&2 "Usage: $0 [fast|force]("
1018 echo -n 1>&2 "$_sep$_elem"
1026 # err exitval message
1027 # Display message to stderr and log to the syslog, and exit with exitval.
1034 if [ -x /usr/bin/logger ]; then
1035 logger "$0: ERROR: $*"
1037 echo 1>&2 "$0: ERROR: $*"
1043 # Display message to stderr and log to the syslog.
1047 if [ -x /usr/bin/logger ]; then
1048 logger "$0: WARNING: $*"
1050 echo 1>&2 "$0: WARNING: $*"
1055 # Display informational message to stdout and log to syslog.
1059 if [ -x /usr/bin/logger ]; then
1060 logger "$0: INFO: $*"
1067 # If debugging is enabled in rc.conf output message to stderr.
1068 # BEWARE that you don't call any subroutine that itself calls this
1074 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
1075 if [ -x /usr/bin/logger ]; then
1076 logger "$0: INFO: $*"
1078 echo 1>&2 "$0: DEBUG: $*"
1084 # backup_file action file cur backup
1085 # Make a backup copy of `file' into `cur', and save the previous
1086 # version of `cur' as `backup' or use rcs for archiving.
1088 # This routine checks the value of the backup_uses_rcs variable,
1089 # which can be either YES or NO.
1091 # The `action' keyword can be one of the following:
1093 # add `file' is now being backed up (and is possibly
1094 # being reentered into the backups system). `cur'
1095 # is created and RCS files, if necessary, are
1098 # update `file' has changed and needs to be backed up.
1099 # If `cur' exists, it is copied to to `back' or
1100 # checked into RCS (if the repository file is old),
1101 # and then `file' is copied to `cur'. Another RCS
1102 # check in done here if RCS is being used.
1104 # remove `file' is no longer being tracked by the backups
1105 # system. If RCS is not being used, `cur' is moved
1106 # to `back', otherwise an empty file is checked in,
1107 # and then `cur' is removed.
1117 if checkyesno backup_uses_rcs; then
1118 _msg0="backup archive"
1121 # ensure that history file is not locked
1122 if [ -f $_cur,v ]; then
1123 rcs -q -u -U -M $_cur
1126 # ensure after switching to rcs that the
1127 # current backup is not lost
1128 if [ -f $_cur ]; then
1129 # no archive, or current newer than archive
1130 if [ ! -f $_cur,v -o $_cur -nt $_cur,v ]; then
1131 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1139 cp -p $_cpfile $_cur
1140 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1143 chown root:wheel $_cur $_cur,v
1147 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1149 chown root:wheel $_cur $_cur,v
1156 if [ -f $_cur ]; then
1159 cp -p $_cpfile $_cur
1160 chown root:wheel $_cur