openrc/init.d/bootmisc

127 lines
2.8 KiB
Plaintext
Raw Normal View History

#!/sbin/runscript
# Copyright 2007-2008 Roy Marples
# All rights reserved
depend()
{
use hostname
need localmount
before logger
after clock sysctl
}
cleanup_tmp_dir()
{
local dir=$1
mkdir -p "${dir}"
cd "${dir}"
2007-12-09 19:19:20 +05:30
if yesno ${wipe_tmp:-${WIPE_TMP:-yes}}; then
ebegin "Wiping ${dir} directory"
local startopts="-x . -depth"
[ "${RC_UNAME}" = "Linux" ] && startopts=". -xdev -depth"
# Faster than find
rm -rf [b-ikm-pr-zA-Z]*
find ${startopts} ! -name . \
! -path ./lost+found \
! -path "./lost+found/*" \
! -path ./quota.user \
! -path "./quota.user/*" \
! -path ./aquota.user \
! -path "./aquota.user/*" \
! -path ./quota.group \
! -path "./quota.group/*" \
! -path ./aquota.group \
! -path "./aquota.group/*" \
! -path ./journal \
! -path "./journal/*" \
2008-01-11 04:52:46 +05:30
-exec rm -rf -- {} \; \
-type d -prune
eend 0
else
ebegin "Cleaning ${dir} directory"
rm -rf "${dir}"/.X*-lock "${dir}"/esrv* "${dir}"/kio* \
"${dir}"/jpsock.* "${dir}"/.fam* "${dir}"/.esd* \
2007-10-23 15:35:47 +05:30
"${dir}"/orbit-* "${dir}"/ssh-* "${dir}"/ksocket-* \
"${dir}"/.*-unix
eend 0
fi
}
start()
{
2007-10-27 15:23:56 +05:30
if ! mkdir /.test.$$ 2>/dev/null; then
ewarn "Skipping /var and /tmp initialization (ro root?)"
return 0
fi
rmdir /.test.$$
# Ensure that our basic dirs exist
2007-11-20 17:50:50 +05:30
for x in /var/log /var/run /tmp; do
2007-10-27 15:23:56 +05:30
if ! [ -d "${x}" ]; then
2007-11-20 17:50:50 +05:30
if ! mkdir -p "${x}"; then
eend 1 "failed to create needed directory ${x}"
return 1
fi
fi
done
ebegin "Creating user login records"
cp /dev/null /var/run/utmp
[ -e /var/log/wtmp ] || cp /dev/null /var/log/wtmp
chmod 0644 /var/run/utmp /var/log/wtmp
eend 0
2007-11-20 17:50:50 +05:30
ebegin "Cleaning /var/run"
2007-07-26 02:28:23 +05:30
for x in $(find /var/run ! -type d ! -name utmp ! -name innd.pid \
! -name random-seed ! -name ld-elf.so.hints \
! -name ld.so.hints); do
[ ! -f "${x}" ] && continue
# Do not remove pidfiles of already running daemons
case "${x}" in
*.pid)
start-stop-daemon --test --quiet --stop \
--pidfile "${x}"
[ $? -eq 0 ] && continue
;;
esac
rm -f "${x}"
done
eend 0
# Clean up /tmp directories
2007-11-20 17:50:50 +05:30
local tmp=
for tmp in ${wipe_tmp_dirs-/tmp}; do
cleanup_tmp_dir "${tmp}"
done
chmod +t /tmp /var/tmp
# Make sure our X11 stuff have the correct permissions
# Omit the chown as bootmisc is run before network is up
# and users may be using lame LDAP auth #139411
rm -rf /tmp/.ICE-unix /tmp/.X11-unix
mkdir -p /tmp/.ICE-unix /tmp/.X11-unix
chmod 1777 /tmp/.ICE-unix /tmp/.X11-unix
[ -x /sbin/restorecon ] && restorecon /tmp/.ICE-unix /tmp/.X11-unix
# Create an 'after-boot' dmesg log
2007-10-27 15:23:56 +05:30
if [ "${RC_SYS}" != "VPS" ]; then
2007-04-26 19:52:54 +05:30
dmesg > /var/log/dmesg
chmod 640 /var/log/dmesg
2007-04-26 19:52:54 +05:30
fi
2008-01-11 04:52:46 +05:30
rm -f /etc/nologin
}
stop()
{
# Write a halt record if we're shutting down
case "${RC_SOFTLEVEL}" in
2007-10-27 15:23:56 +05:30
reboot|shutdown) [ "${RC_UNAME}" = "Linux" ] && halt -w;;
esac
return 0
}