#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /home/cvsroot/gentoo-src/rc-scripts/init.d/bootmisc,v 1.35 2003/10/14 00:02:21 azarah Exp $


depend() {
	need clock localmount hostname
	before logger
}

start() {
	if [ "${BOOT}" = "yes" ]
	then
		# Put a nologin file in /etc to prevent people from logging in before
		# system startup is complete.
		if [ "${DELAYLOGIN}" = "yes" ]
		then
			echo "System bootup in progress - please wait" > /etc/nologin
			cp /etc/nologin /etc/nologin.boot &>/dev/null
		fi

		if [ -e /etc/sysctl.conf ]
		then
			ebegin "Configuring kernel parameters"
			/sbin/sysctl -p /etc/sysctl.conf &>/dev/null
			eend 0
		fi

		if [ -x /sbin/env-update.sh ]
		then
			ebegin "Updating environment"
			/sbin/env-update.sh >/dev/null
			eend 0
		fi

		# Reset pam_console permissions
		rm -rf /var/run/console.lock /var/run/console/*
		if [ -z "${CDBOOT}" ]
		then
			#
			# Clean up any stale locks.
			#
			ebegin "Cleaning /var/lock, /var/run"
			( find /var/lock -type f -exec rm -f -- {} \; )
		
			#
			# Clean up /var/run and create /var/run/utmp so that we can login.
			#
			for x in $(find /var/run/ ! -type d ! -name utmp ! -name innd.pid ! -name random-seed)
			do
				local daemon="${x##*/}"
				daemon="${daemon%*.pid}"
				# Do not remove pidfiles of already running daemons
				if [ -z "`ps --no-heading -C "${daemon}"`" ]
				then
					if [ -f "${x}" -o -L "${x}" ]
					then
						rm -f "${x}"
					fi
				fi
			done
		fi
		# Setup login records
		> /var/run/utmp
		touch /var/log/wtmp
		chgrp utmp /var/run/utmp /var/log/wtmp
		chmod 0664 /var/run/utmp /var/log/wtmp
		# Remove /var/run/utmpx (bug from the past)
		rm -f /var/run/utmpx
		# Reset pam_console permissions
		[ -x /sbin/pam_console_apply -a ! -c /dev/.devfsd ] && \
			/sbin/pam_console_apply -r
		# Create the .keep to stop portage from removing /var/lock
		>/var/lock/.keep
		eend 0

		#
		# Clean up /tmp directory
		#
		if [ -z "${CDBOOT}" ]
		then
			ebegin "Cleaning /tmp directory"
			rm -f /tmp/.X*-lock /tmp/esrv* /tmp/kio* /tmp/jpsock.* /tmp/.fam* &>/dev/null
			rm -rf /tmp/.esd* /tmp/orbit-* /tmp/ssh-* /tmp/ksocket-* /tmp/.*-unix &>/dev/null
			# Make sure our X11 stuff have the correct permissions
			mkdir -p /tmp/.{ICE,X11}-unix &>/dev/null
#			chown root.root /tmp/.{ICE,X11}-unix &>/dev/null
			chmod 1777 /tmp/.{ICE,X11}-unix &>/dev/null
			eend 0
		fi
	fi

	#
	# Check for /etc/resolv.conf, and create if missing
	#
	[ -f /etc/resolv.conf ] || touch /etc/resolv.conf &>/dev/null

# This should be handled by devfsd ...
#	if test -c /dev/ttyp0 &>/dev/null
#	then
#		chmod 666 /dev/tty[p-za-e][0-9a-f] &>/dev/null
#		chown root:tty /dev/tty[p-za-e][0-9a-f] &>/dev/null
#	fi
}


# vim:ts=4
