1#!/bin/sh 2 3# $FreeBSD$ 4 5# Copyright (c) 2009 Douglas Barton 6# All rights reserved. 7# 8# Redistribution and use in source and binary forms, with or without 9# modification, are permitted provided that the following conditions 10# are met: 11# 1. Redistributions of source code must retain the above copyright 12# notice, this list of conditions and the following disclaimer. 13# 2. Redistributions in binary form must reproduce the above copyright 14# notice, this list of conditions and the following disclaimer in the 15# documentation and/or other materials provided with the distribution. 16# 17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 21# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27# SUCH DAMAGE. 28 29. /etc/rc.subr 30load_rc_config 'XXX' 31 32usage () { 33 echo '' 34 echo 'Usage:' 35 echo "${0##*/} -e" 36 echo "${0##*/} -R" 37 echo "${0##*/} [-v] -l | -r" 38 echo "${0##*/} [-v] <rc.d script> start|stop|etc." 39 echo "${0##*/} -h" 40 echo '' 41 echo '-e Show services that are enabled' 42 echo "-R Stop and start enabled $local_startup services" 43 echo "-l List all scripts in /etc/rc.d and $local_startup" 44 echo '-r Show the results of boot time rcorder' 45 echo '-v Verbose' 46 echo '' 47} 48 49while getopts 'ehlrRv' COMMAND_LINE_ARGUMENT ; do 50 case "${COMMAND_LINE_ARGUMENT}" in 51 e) ENABLED=eopt ;; 52 h) usage ; exit 0 ;; 53 l) LIST=lopt ;; 54 r) RCORDER=ropt ;; 55 R) RESTART=Ropt ;; 56 v) VERBOSE=vopt ;; 57 *) usage ; exit 1 ;; 58 esac 59done 60shift $(( $OPTIND - 1 )) 61 62if [ -n "$RESTART" ]; then 63 skip="-s nostart" 64 if [ `/sbin/sysctl -n security.jail.jailed` -eq 1 ]; then 65 skip="$skip -s nojail" 66 fi 67 [ -n "$local_startup" ] && find_local_scripts_new 68 files=`rcorder ${skip} ${local_rc} 2>/dev/null` 69 70 for file in `reverse_list ${files}`; do 71 if grep -q ^rcvar $file; then 72 eval `grep ^name= $file` 73 eval `grep ^rcvar $file` 74 checkyesno $rcvar 2>/dev/null && run_rc_script ${file} stop 75 fi 76 done 77 for file in $files; do 78 if grep -q ^rcvar $file; then 79 eval `grep ^name= $file` 80 eval `grep ^rcvar $file` 81 checkyesno $rcvar 2>/dev/null && run_rc_script ${file} start 82 fi 83 done 84 85 exit 0 86fi 87 88if [ -n "$ENABLED" -o -n "$RCORDER" ]; then 89 # Copied from /etc/rc 90 skip="-s nostart" 91 if [ `/sbin/sysctl -n security.jail.jailed` -eq 1 ]; then 92 skip="$skip -s nojail" 93 fi 94 [ -n "$local_startup" ] && find_local_scripts_new 95 files=`rcorder ${skip} /etc/rc.d/* ${local_rc} 2>/dev/null` 96fi 97 98if [ -n "$ENABLED" ]; then 99 for file in $files; do 100 if grep -q ^rcvar $file; then 101 eval `grep ^name= $file` 102 eval `grep ^rcvar $file` 103 checkyesno $rcvar 2>/dev/null && echo $file 104 fi 105 done 106 exit 0 107fi 108 109if [ -n "$LIST" ]; then 110 for dir in /etc/rc.d $local_startup; do 111 [ -n "$VERBOSE" ] && echo "From ${dir}:" 112 cd $dir && for file in *; do echo $file; done 113 done 114 exit 0 115fi 116 117if [ -n "$RCORDER" ]; then 118 for file in $files; do 119 echo $file 120 if [ -n "$VERBOSE" ]; then 121 case "$file" in 122 */${early_late_divider}) 123 echo '========= Early/Late Divider =========' ;; 124 esac 125 fi 126 done 127 exit 0 128fi 129 130if [ $# -gt 1 ]; then 131 script=$1 132 shift 133else 134 usage 135 exit 1 136fi 137 138cd / 139for dir in /etc/rc.d $local_startup; do 140 if [ -x "$dir/$script" ]; then 141 [ -n "$VERBOSE" ] && echo "$script is located in $dir" 142 exec env -i HOME=/ PATH=/sbin:/bin:/usr/sbin:/usr/bin $dir/$script $* 143 fi 144done 145 146# If the script was not found 147echo "$script does not exist in /etc/rc.d or the local startup" 148echo "directories (${local_startup}), or is not executable" 149exit 1 150