1 # $NetBSD: rc.subr,v 1.79 2009/09/14 12:05:12 apb Exp $
3 # Copyright (c) 1997-2004 The NetBSD Foundation, Inc.
6 # This code is derived from software contributed to The NetBSD Foundation
9 # Redistribution and use in source and binary forms, with or without
10 # modification, are permitted provided that the following conditions
12 # 1. Redistributions of source code must retain the above copyright
13 # notice, this list of conditions and the following disclaimer.
14 # 2. Redistributions in binary form must reproduce the above copyright
15 # notice, this list of conditions and the following disclaimer in the
16 # documentation and/or other materials provided with the distribution.
18 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 # POSSIBILITY OF SUCH DAMAGE.
31 # functions used by various rc scripts
34 : ${rcvar_manpage:='rc.conf(5)'}
35 : ${RC_PID:=$$} ; export RC_PID
45 # Test $1 variable, and warn if not set to YES or NO.
46 # Return 0 if it's "yes" (et al), nonzero otherwise.
53 # "yes", "true", "on", or "1"
54 [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
58 # "no", "false", "off", or "0"
59 [Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
63 warn "\$${1} is not set properly - see ${rcvar_manpage}."
70 # yesno_to_truefalse var
71 # Convert the value of a variable from any of the values
72 # understood by checkyesno() to "true" or "false".
77 if checkyesno $var; then
88 # print the list in reverse order
94 _revlist="$_revfile $_revlist"
100 # If booting directly to multiuser, send SIGTERM to
101 # the parent (/etc/rc) to abort the boot.
102 # Otherwise just exit.
106 if [ "$autoboot" = yes ]; then
107 echo "ERROR: ABORTING BOOT (sending SIGTERM to parent)!"
114 # mount_critical_filesystems type
115 # Go through the list of critical filesystems as provided in
116 # the rc.conf(5) variable $critical_filesystems_${type}, checking
117 # each one to see if it is mounted, and if it is not, mounting it.
118 # It's not an error if file systems prefixed with "OPTIONAL:"
119 # are not mentioned in /etc/fstab.
121 mount_critical_filesystems()
123 eval _fslist=\$critical_filesystems_${1}
125 for _fs in $_fslist; do
134 # look for a line like "${fs} on * type *"
135 # or "* on ${fs} type *" in the output from mount.
136 case "${nl}$( mount )${nl}" in
137 *" on ${_fs} type "*)
146 "note:File system ${_fs} was already mounted"
148 _mount_output=$( mount $_fs 2>&1 )
150 case "$_mount_output" in
152 # multiple lines can't be good,
153 # not even if $_optional is true
155 *'unknown special file or file system'*)
159 "note:Optional file system ${_fs} is not present"
165 if [ -n "$_mount_output" ]; then
166 printf >&2 "%s\n" "$_mount_output"
168 if [ "$_mount_es" != 0 ]; then
169 _mountcrit_es="$_mount_es"
173 return $_mountcrit_es
177 # check_pidfile pidfile procname [interpreter]
178 # Parses the first line of pidfile for a PID, and ensures
179 # that the process is running and matches procname.
180 # Prints the matching PID upon success, nothing otherwise.
181 # interpreter is optional; see _find_processes() for details.
188 if [ -z "$_pidfile" -o -z "$_procname" ]; then
189 err 3 'USAGE: check_pidfile pidfile procname [interpreter]'
191 if [ ! -f $_pidfile ]; then
194 read _pid _junk < $_pidfile
195 if [ -z "$_pid" ]; then
198 _find_processes $_procname ${_interpreter:-.} '-p '"$_pid"
202 # check_process procname [interpreter]
203 # Ensures that a process (or processes) named procname is running.
204 # Prints a list of matching PIDs.
205 # interpreter is optional; see _find_processes() for details.
211 if [ -z "$_procname" ]; then
212 err 3 'USAGE: check_process procname [interpreter]'
214 _find_processes $_procname ${_interpreter:-.} '-ax'
218 # _find_processes procname interpreter psargs
219 # Search for procname in the output of ps generated by psargs.
220 # Prints the PIDs of any matching processes, space separated.
222 # If interpreter == ".", check the following variations of procname
223 # against the first word of each command:
225 # `basename procname`
226 # `basename procname` + ":"
227 # "(" + `basename procname` + ")"
229 # If interpreter != ".", read the first line of procname, remove the
230 # leading #!, normalise whitespace, append procname, and attempt to
231 # match that against each command, either as is, or with extra words
232 # at the end. As an alternative, to deal with interpreted daemons
233 # using perl, the basename of the interpreter plus a colon is also
234 # tried as the prefix to procname.
238 if [ $# -ne 3 ]; then
239 err 3 'USAGE: _find_processes procname interpreter psargs'
246 _procnamebn=${_procname##*/}
247 if [ $_interpreter != "." ]; then # an interpreted script
248 read _interp < ${_chroot:-}/$_procname # read interpreter name
249 _interp=${_interp#\#!} # strip #!
251 if [ $_interpreter != $1 ]; then
252 warn "\$command_interpreter $_interpreter != $1"
254 _interp="$* $_procname" # cleanup spaces, add _procname
257 _fp_match='case "$_argv" in
258 ${_interp}|"${_interp} "*|"${_interpbn}: "*${_procnamebn}*)'
259 else # a normal daemon
260 _fp_args='_arg0 _argv'
261 _fp_match='case "$_arg0" in
262 $_procname|$_procnamebn|${_procnamebn}:|"(${_procnamebn})")'
266 ps -o "pid,command" '"$_psargs"' |
267 while read _npid '"$_fp_args"'; do
271 esac ; '"$_fp_match"'
272 echo -n "$_pref$_npid" ;
278 #echo 1>&2 "proccheck is :$_proccheck:"
283 # wait_for_pids pid [pid ...]
284 # spins until none of the pids exist
289 if [ -z "$_list" ]; then
296 if kill -0 $_j 2>/dev/null; then
297 _nlist="${_nlist}${_nlist:+ }$_j"
300 if [ -z "$_nlist" ]; then
304 echo -n ${_prefix:-"Waiting for PIDS: "}$_list
308 if [ -n "$_prefix" ]; then
314 # run_rc_command argument
315 # Search for argument in the list of supported commands, which is:
316 # "start stop restart rcvar status poll ${extra_commands}"
317 # If there's a match, run ${argument}_cmd or the default method
320 # If argument has a given prefix, then change the operation as follows:
323 # fast Skip the pid check, and set rc_fast=yes
324 # force Set ${rcvar} to YES, and set rc_force=yes
325 # one Set ${rcvar} to YES
327 # The following globals are used:
329 # Name Needed Purpose
330 # ---- ------ -------
331 # name y Name of script.
333 # command n Full path to command.
334 # Not needed if ${rc_arg}_cmd is set for
337 # command_args n Optional args/shell directives for command.
339 # command_interpreter n If not empty, command is interpreted, so
340 # call check_{pidfile,process}() appropriately.
342 # extra_commands n List of extra commands supported.
344 # pidfile n If set, use check_pidfile $pidfile $command,
345 # otherwise use check_process $command.
346 # In either case, only check if $command is set.
348 # procname n Process name to check for instead of $command.
350 # rcvar n This is checked with checkyesno to determine
351 # if the action should be run.
353 # ${name}_chroot n Directory to chroot to before running ${command}
354 # Requires /usr to be mounted.
356 # ${name}_chdir n Directory to cd to before running ${command}
357 # (if not using ${name}_chroot).
359 # ${name}_flags n Arguments to call ${command} with.
360 # NOTE: $flags from the parent environment
361 # can be used to override this.
363 # ${name}_env n Additional environment variable settings
364 # for running ${command}
366 # ${name}_nice n Nice level to run ${command} at.
368 # ${name}_user n User to run ${command} as, using su(1) if not
369 # using ${name}_chroot.
370 # Requires /usr to be mounted.
372 # ${name}_group n Group to run chrooted ${command} as.
373 # Requires /usr to be mounted.
375 # ${name}_groups n Comma separated list of supplementary groups
376 # to run the chrooted ${command} with.
377 # Requires /usr to be mounted.
379 # ${rc_arg}_cmd n If set, use this as the method when invoked;
380 # Otherwise, use default command (see below)
382 # ${rc_arg}_precmd n If set, run just before performing the
383 # ${rc_arg}_cmd method in the default
384 # operation (i.e, after checking for required
385 # bits and process (non)existence).
386 # If this completes with a non-zero exit code,
387 # don't run ${rc_arg}_cmd.
389 # ${rc_arg}_postcmd n If set, run just after performing the
390 # ${rc_arg}_cmd method, if that method
391 # returned a zero exit code.
393 # required_dirs n If set, check for the existence of the given
394 # directories before running the default
397 # required_files n If set, check for the readability of the given
398 # files before running the default (re)start
401 # required_vars n If set, perform checkyesno on each of the
402 # listed variables before running the default
405 # Default behaviour for a given argument, if no override method is
408 # Argument Default behaviour
409 # -------- -----------------
410 # start if !running && checkyesno ${rcvar}
414 # rc_pid=$(check_pidfile $pidfile $command)
416 # rc_pid=$(check_process $command)
417 # kill $sig_stop $rc_pid
418 # wait_for_pids $rc_pid
419 # ($sig_stop defaults to TERM.)
421 # reload Similar to stop, except use $sig_reload instead,
422 # and doesn't wait_for_pids.
423 # $sig_reload defaults to HUP.
425 # restart Run `stop' then `start'.
427 # status Show if ${command} is running, etc.
429 # poll Wait for ${command} to exit.
431 # rcvar Display what rc.conf variable is used (if any).
433 # Variables available to methods, and after run_rc_command() has
438 # rc_arg Argument to command, after fast/force/one processing
441 # rc_flags Flags to start the default command with.
442 # Defaults to ${name}_flags, unless overridden
443 # by $flags from the environment.
444 # This variable may be changed by the precmd method.
446 # rc_pid PID of command (if appropriate)
448 # rc_fast Not empty if "fast" was provided (q.v.)
450 # rc_force Not empty if "force" was provided (q.v.)
456 if [ -z "$name" ]; then
457 err 3 'run_rc_command: $name is not set.'
462 fast*) # "fast" prefix; don't check pid
463 rc_arg=${rc_arg#fast}
466 force*) # "force" prefix; always run
469 rc_arg=${rc_arg#${_rc_prefix}}
470 if [ -n "${rcvar}" ]; then
474 one*) # "one" prefix; set ${rcvar}=yes
476 rc_arg=${rc_arg#${_rc_prefix}}
477 if [ -n "${rcvar}" ]; then
483 _keywords="start stop restart rcvar"
484 if [ -n "$extra_commands" ]; then
485 _keywords="${_keywords} ${extra_commands}"
489 _procname=${procname:-${command}}
491 # setup pid check command if not fast
492 if [ -z "$rc_fast" -a -n "$_procname" ]; then
493 if [ -n "$pidfile" ]; then
494 _pidcmd='rc_pid=$(check_pidfile '"$pidfile $_procname $command_interpreter"')'
496 _pidcmd='rc_pid=$(check_process '"$_procname $command_interpreter"')'
498 if [ -n "$_pidcmd" ]; then
499 _keywords="${_keywords} status poll"
503 if [ -z "$rc_arg" ]; then
504 rc_usage "$_keywords"
507 if [ -n "$flags" ]; then # allow override from environment
510 eval rc_flags=\$${name}_flags
512 eval _chdir=\$${name}_chdir _chroot=\$${name}_chroot \
513 _nice=\$${name}_nice _user=\$${name}_user \
514 _group=\$${name}_group _groups=\$${name}_groups \
515 _env=\"\$${name}_env\"
517 if [ -n "$_user" ]; then # unset $_user if running as that user
518 if [ "$_user" = "$(id -un)" ]; then
523 # if ${rcvar} is set, and $1 is not
525 # checkyesno ${rcvar}
526 # and return if that failed or warn
527 # user and exit when interactive
529 if [ -n "${rcvar}" -a "$rc_arg" != "rcvar" ]; then
530 if ! checkyesno ${rcvar}; then
531 # check whether interactive or not
532 if [ -n "$_run_rc_script" ]; then
535 for _elem in $_keywords; do
536 if [ "$_elem" = "$rc_arg" ]; then
537 echo 1>&2 "\$${rcvar} is not enabled - see ${rcvar_manpage}."
538 echo 1>&2 "Use the following if you wish to perform the operation:"
539 echo 1>&2 " $0 one${rc_arg}"
543 echo 1>&2 "$0: unknown directive '$rc_arg'."
544 rc_usage "$_keywords"
548 eval $_pidcmd # determine the pid if necessary
550 for _elem in $_keywords; do
551 if [ "$_elem" != "$rc_arg" ]; then
555 # if there's a custom ${XXX_cmd},
556 # run that instead of the default
558 eval _cmd=\$${rc_arg}_cmd _precmd=\$${rc_arg}_precmd \
559 _postcmd=\$${rc_arg}_postcmd
560 if [ -n "$_cmd" ]; then
561 # if the precmd failed and force
564 if ! eval $_precmd && [ -z "$rc_force" ]; then
568 if ! eval $_cmd && [ -z "$rc_force" ]; then
575 case "$rc_arg" in # default operations...
578 if [ -n "$rc_pid" ]; then
579 echo "${name} is running as pid $rc_pid."
581 echo "${name} is not running."
587 if [ -n "$rc_pid" ]; then
588 echo 1>&2 "${name} already running? (pid=$rc_pid)."
592 if [ ! -x ${_chroot}${command} ]; then
596 # check for required variables,
597 # directories, and files
599 for _f in $required_vars; do
600 if ! checkyesno $_f; then
601 warn "\$${_f} is not enabled."
602 if [ -z "$rc_force" ]; then
607 for _f in $required_dirs; do
608 if [ ! -d "${_f}/." ]; then
609 warn "${_f} is not a directory."
610 if [ -z "$rc_force" ]; then
615 for _f in $required_files; do
616 if [ ! -r "${_f}" ]; then
617 warn "${_f} is not readable."
618 if [ -z "$rc_force" ]; then
624 # if the precmd failed and force
627 if ! eval $_precmd && [ -z "$rc_force" ]; then
631 # setup the command to run, and run it
633 echo "Starting ${name}."
634 if [ -n "$_chroot" ]; then
637 ${_nice:+nice -n $_nice }\
638 chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\
639 $_chroot $command $rc_flags $command_args"
642 ${_chdir:+cd $_chdir; }\
644 ${_nice:+nice -n $_nice }\
645 $command $rc_flags $command_args"
646 if [ -n "$_user" ]; then
647 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
651 # if the cmd failed and force
654 if ! eval $_doit && [ -z "$rc_force" ]; then
658 # finally, run postcmd
664 if [ -z "$rc_pid" ]; then
665 if [ -n "$pidfile" ]; then
667 "${name} not running? (check $pidfile)."
669 echo 1>&2 "${name} not running?"
674 # if the precmd failed and force
677 if ! eval $_precmd && [ -z "$rc_force" ]; then
681 # send the signal to stop
683 echo "Stopping ${name}."
684 _doit="kill -${sig_stop:-TERM} $rc_pid"
685 if [ -n "$_user" ]; then
686 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
689 # if the stop cmd failed and force
692 if ! eval $_doit && [ -z "$rc_force" ]; then
696 # wait for the command to exit,
698 wait_for_pids $rc_pid
703 if [ -z "$rc_pid" ]; then
704 if [ -n "$pidfile" ]; then
706 "${name} not running? (check $pidfile)."
708 echo 1>&2 "${name} not running?"
712 echo "Reloading ${name} config files."
713 if ! eval $_precmd && [ -z "$rc_force" ]; then
716 _doit="kill -${sig_reload:-HUP} $rc_pid"
717 if [ -n "$_user" ]; then
718 _doit="su -m $_user -c 'sh -c \"$_doit\"'"
720 if ! eval $_doit && [ -z "$rc_force" ]; then
727 if ! eval $_precmd && [ -z "$rc_force" ]; then
730 # prevent restart being called more
731 # than once by any given script
733 if ${_rc_restart_done:-false}; then
736 _rc_restart_done=true
738 ( $0 ${_rc_prefix}stop )
739 $0 ${_rc_prefix}start
745 if [ -n "$rc_pid" ]; then
746 wait_for_pids $rc_pid
752 if [ -n "$rcvar" ]; then
753 if checkyesno ${rcvar}; then
754 echo "\$${rcvar}=YES"
762 rc_usage "$_keywords"
769 echo 1>&2 "$0: unknown directive '$rc_arg'."
770 rc_usage "$_keywords"
775 # run_rc_script file arg
776 # Start the script `file' with `arg', and correctly handle the
777 # return value from the script. If `file' ends with `.sh', it's
778 # sourced into the current environment. If `file' appears to be
779 # a backup or scratch file, ignore it. Otherwise if it's
780 # executable run as a child process.
782 # If `file' contains "KEYWORD: interactive" and if we are
783 # running inside /etc/rc with postprocessing (as signified by
784 # _rc_postprocessor_fd being defined) then the script's stdout
785 # and stderr are redirected to $_rc_original_stdout_fd and
786 # $_rc_original_stderr_fd, so the output will be displayed on the
787 # console but not intercepted by /etc/rc's postprocessor.
793 if [ -z "$_file" -o -z "$_arg" ]; then
794 err 3 'USAGE: run_rc_script file arg'
799 unset name command command_args command_interpreter \
800 extra_commands pidfile procname \
801 rcvar required_dirs required_files required_vars
802 eval unset ${_arg}_cmd ${_arg}_precmd ${_arg}_postcmd
805 if [ -n "${_rc_postprocessor_fd}" ] \
806 && _has_rcorder_keyword interactive $_file
812 *.sh) # run in current shell
813 if $_must_redirect; then
815 "note:Output from ${_file} is not logged"
816 no_rc_postprocess eval \
817 'set $_arg ; . $_file'
822 *[~#]|*.OLD|*.orig|*,v) # scratch file; skip
823 warn "Ignoring scratch file $_file"
826 if [ -x $_file ] && $_must_redirect; then
828 "note:Output from ${_file} is not logged"
829 if [ -n "$rc_fast_and_loose" ]; then
830 no_rc_postprocess eval \
831 'set $_arg ; . $_file'
833 no_rc_postprocess eval \
834 '( set $_arg ; . $_file )'
836 elif [ -x $_file ]; then
837 if [ -n "$rc_fast_and_loose" ]; then
840 ( set $_arg ; . $_file )
843 warn "Ignoring non-executable file $_file"
850 # load_rc_config command
851 # Source in the configuration file for a given command.
856 if [ -z "$_command" ]; then
857 err 3 'USAGE: load_rc_config command'
860 if ${_rc_conf_loaded:-false}; then
866 if [ -f /etc/rc.conf.d/"$_command" ]; then
867 . /etc/rc.conf.d/"$_command"
872 # load_rc_config_var cmd var
873 # Read the rc.conf(5) var for cmd and set in the
874 # current shell, using load_rc_config in a subshell to prevent
875 # unwanted side effects from other variable assignments.
879 if [ $# -ne 2 ]; then
880 err 3 'USAGE: load_rc_config_var cmd var'
883 load_rc_config '$1' >/dev/null;
884 if [ -n "${'$2'}" -o "${'$2'-UNSET}" != "UNSET" ]; then
885 echo '$2'=\'\''${'$2'}\'\'';
892 # Print a usage string for $0, with `commands' being a list of
897 echo -n 1>&2 "Usage: $0 [fast|force|one]("
901 echo -n 1>&2 "$_sep$_elem"
909 # err exitval message
910 # Display message to stderr and log to the syslog, and exit with exitval.
917 if [ -x /usr/bin/logger ]; then
918 logger "$0: ERROR: $*"
920 echo 1>&2 "$0: ERROR: $*"
926 # Display message to stderr and log to the syslog.
930 if [ -x /usr/bin/logger ]; then
931 logger "$0: WARNING: $*"
933 echo 1>&2 "$0: WARNING: $*"
937 # backup_file action file cur backup
938 # Make a backup copy of `file' into `cur', and save the previous
939 # version of `cur' as `backup' or use rcs for archiving.
941 # This routine checks the value of the backup_uses_rcs variable,
942 # which can be either YES or NO.
944 # The `action' keyword can be one of the following:
946 # add `file' is now being backed up (and is possibly
947 # being reentered into the backups system). `cur'
948 # is created and RCS files, if necessary, are
951 # update `file' has changed and needs to be backed up.
952 # If `cur' exists, it is copied to to `back' or
953 # checked into RCS (if the repository file is old),
954 # and then `file' is copied to `cur'. Another RCS
955 # check in done here if RCS is being used.
957 # remove `file' is no longer being tracked by the backups
958 # system. If RCS is not being used, `cur' is moved
959 # to `back', otherwise an empty file is checked in,
960 # and then `cur' is removed.
970 if checkyesno backup_uses_rcs; then
971 _msg0="backup archive"
974 # ensure that history file is not locked
975 if [ -f $_cur,v ]; then
976 rcs -q -u -U -M $_cur
979 # ensure after switching to rcs that the
980 # current backup is not lost
981 if [ -f $_cur ]; then
982 # no archive, or current newer than archive
983 if [ ! -f $_cur,v -o $_cur -nt $_cur,v ]; then
984 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
993 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
996 chown root:wheel $_cur $_cur,v
1000 ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
1002 chown root:wheel $_cur $_cur,v
1009 if [ -f $_cur ]; then
1013 chown root:wheel $_cur
1023 # handle_fsck_error fsck_exit_code
1024 # Take action depending on the return code from fsck.
1032 2) # Needs re-run, still fs errors
1033 echo "File system still has errors; re-run fsck manually!"
1036 echo "Root filesystem was modified, rebooting ..."
1038 echo "Reboot failed; help!"
1041 echo "Automatic file system check failed; help!"
1044 echo "Boot interrupted."
1047 echo "Unknown error $1; help!"
1054 # _has_rcorder_keyword word file
1055 # Check whether a file contains a "# KEYWORD:" comment with a
1056 # specified keyword in the style used by rcorder(8).
1058 _has_rcorder_keyword()
1064 [ -r "$file" ] || return 1
1067 "# KEYWORD:"*[\ \ ]"${word}"[\ \ ]*)
1074 # give up at the first non-empty non-comment line
1083 # print_rc_metadata string
1084 # Print the specified string in such a way that the post-processor
1085 # inside /etc/rc will treat it as meta-data.
1087 # If we are not running inside /etc/rc, do nothing.
1089 # For public use by any rc.d script, the string must begin with
1090 # "note:", followed by arbitrary text. The intent is that the text
1091 # will appear in a log file but not on the console.
1093 # For private use within /etc/rc, the string must contain a
1094 # keyword recognised by the rc_postprocess_metadata() function
1095 # defined in /etc/rc, followed by a colon, followed by one or more
1096 # colon-separated arguments associated with the keyword.
1100 # _rc_postprocessor fd, if defined, is the fd to which we must
1101 # print, prefixing the output with $_rc_metadata_prefix.
1103 if [ -n "$_rc_postprocessor_fd" ]; then
1104 printf "%s%s\n" "$rc_metadata_prefix" "$1" \
1105 >&${_rc_postprocessor_fd}
1110 # print_rc_normal string
1111 # Print the specified string in such way that it is treated as
1112 # normal output, regardless of whether or not we are running
1113 # inside /etc/rc with post-processing.
1115 # Ths intent is that a script that is run via the
1116 # no_rc_postprocess() function (so its output would ordinarily be
1117 # invisible to the post-processor) can nevertheless arrange for
1118 # the post-processor to see things printed with print_rc_normal().
1122 # If _rc_postprocessor_fd is defined, then it is the fd
1123 # to shich we must print; otherwise print to stdout.
1125 printf "%s\n" "$1" >&${_rc_postprocessor_fd:-1}
1129 # no_rc_postprocess cmd...
1130 # Execute the specified command in such a way that its output
1131 # bypasses the post-processor that handles the output from
1132 # most commands that are run inside /etc/rc. If we are not
1133 # inside /etc/rc, then just execute the command without special
1136 # The intent is that interactive commands can be run via
1137 # no_rc_postprocess(), and their output will apear immediately
1138 # on the console instead of being hidden or delayed by the
1139 # post-processor. An unfortunate consequence of the output
1140 # bypassing the post-processor is that the output will not be
1145 if [ -n "${_rc_postprocessor_fd}" ]; then
1146 "$@" >&${_rc_original_stdout_fd} 2>&${_rc_original_stderr_fd}
1154 # On each call, print a different one of "/", "-", "\\", "|",
1155 # followed by a backspace. The most recently printed value is
1156 # saved in $_twiddle_state.
1158 # Output is to /dev/tty, so this function may be useful even inside
1159 # a script whose output is redirected.
1163 case "$_twiddle_state" in
1169 printf "%s\b" "$_next" >/dev/tty
1170 _twiddle_state="$_next"