home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.sberbank.sumy.ua
/
2014.11.ftp.sberbank.sumy.ua.tar
/
ftp.sberbank.sumy.ua
/
incoming
/
sxtech
/
etc
/
rc.shutdown
< prev
next >
Wrap
Text File
|
2014-08-29
|
4KB
|
158 lines
#!/bin/sh
#
# $Revision: #5 $
#
# Copyright (c) 1997 Ollivier Robert
# All rights reserved.
#
# 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.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
#
# $FreeBSD: src/etc/rc.shutdown,v 1.4.2.13 2001/12/19 14:40:28 roam Exp $
#
# Site-specific closing actions for daemons run by init on shutdown,
# or before going single-user from multi-user.
# Output and errors are directed to console by init, and the
# console is the controlling terminal.
stty status '^T'
# Set shell to ignore SIGINT (2), but not children;
# shell catches SIGQUIT (3) and returns to single user after fsck.
trap : 2
trap : 3 # shouldn't be needed
HOME=/
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin
export HOME PATH
# Before we try to do anything else which might touch the disk and
# thus hang the system with a filesystem problem, potentially with
# interfaces still up, run lbd -Q to kill all our service aliases.
#
/usr/local/equalizer/libexec/lbd -Q
# WAS "Mute the console and don't output the result."
# We DONT want to do this! See bug 2909
sysctl kern.consmute=0 >/dev/null
# If there is a global system configuration file, suck it in.
#
if [ -r /etc/defaults/rc.conf ]; then
. /etc/defaults/rc.conf
source_rc_confs
elif [ -r /etc/rc.conf ]; then
. /etc/rc.conf
fi
# disable all onboard network interfaces per bug 3509
#
echo 'Disabling network interfaces:'
for if in ${network_interfaces}; do
if [ "lo0" != "${if}" ]; then
echo 'shutdown' $if
ifconfig $if down
fi
done
echo -n 'Shutting down daemon processes:'
# for each valid dir in $local_startup, search for init scripts matching *.sh
case ${local_startup} in
[Nn][Oo] | '')
;;
*)
slist=""
if [ -z "${script_name_sep}" ]; then
script_name_sep=" "
fi
for dir in ${local_startup}; do
if [ -d "${dir}" ]; then
for script in ${dir}/*.sh; do
slist="${script}${script_name_sep}${slist}"
done
fi
done
script_save_sep="$IFS"
IFS="${script_name_sep}"
for script in ${slist}; do
if [ -x "${script}" ]; then
(set -T
trap 'exit 1' 2
${script} stop)
fi
done
IFS="${script_save_sep}"
echo '.'
;;
esac
# Insert other shutdown procedures here
#
# Cleanup some stuff we don't care to preserve.
#
rm -f /var/db/dhclient.leases
rm -f /var/eq/log/gooey*
#
# Preserve stuff back to persistent storage.
#
touch /var/tmp/.noshadow
touch /var/crash/.noshadow
touch /var/run/.noshadow
/usr/local/sbin/shadow -d /var/eq/responder
#
# This is of questionable utility, since almost everything beneath /var
# actually has a .noshadow file inserted at boot time or build time.
/usr/local/sbin/shadow /var
#
# We shadow /var/log file-by-file: we do not want everything that might
# be here (specifically, we _really_ don't want certain things, like
# gzipped old log files, or huge log files that might have filled the
# filesystem).
/usr/bin/find /var/log \
-type f -a \
\! -name .\* -a \! -name \*.gz -a \
-size -100000c \
-print | \
/usr/bin/xargs /usr/local/sbin/shadow
#
# Unmount the memory filesystems, so that the mfs processes will go away.
#
umount -f /var/crash
umount -f /var/tmp
umount -f /var
# Do not unmount /dev as it seems to cause shutdown hangs
#umount -f /dev
exit 0