d6da8e8c48
mounting various bits in /dev and /sys. init.sh JUST mounts /lib/rc/init.d (and /proc for Linux systems) To make development of this easier we now return an empty RC_STRINGLIST instead of a NULL for empty things. If you don't have a udev init script installed, don't reboot your box OR roll back to an older OpenRC version.
26 lines
682 B
Bash
26 lines
682 B
Bash
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
retval=0
|
|
|
|
# mount $svcdir as something we can write to if it's not rw
|
|
# On vservers, / is always rw at this point, so we need to clean out
|
|
# the old service state data
|
|
RC_SVCDIR=${RC_SVCDIR:-/@LIB@/rc/init.d}
|
|
if [ "${RC_SVCDIR}" != "/" ] && mkdir "${RC_SVCDIR}/.test.$$" 2>/dev/null; then
|
|
rmdir "${RC_SVCDIR}/.test.$$"
|
|
for x in ${RC_SVCDIR}/*; do
|
|
[ -e "${x}" ] || continue
|
|
case ${x##*/} in
|
|
depconfig|deptree|ksoftlevel|rc.log);;
|
|
*) rm -rf "${x}";;
|
|
esac
|
|
done
|
|
else
|
|
mount_svcdir
|
|
retval=$?
|
|
fi
|
|
|
|
echo "sysinit" > "${RC_SVCDIR}/softlevel"
|
|
exit ${retval}
|