2008-01-11 21:01:10 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2008-01-31 15:18:58 +05:30
|
|
|
retval=0
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
# 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
|
2008-01-31 15:18:58 +05:30
|
|
|
if [ "${RC_SVCDIR}" != "/" ] && mkdir "${RC_SVCDIR}/.test.$$" 2>/dev/null; then
|
2007-09-24 20:58:48 +05:30
|
|
|
rmdir "${RC_SVCDIR}/.test.$$"
|
2007-12-14 17:47:57 +05:30
|
|
|
for x in ${RC_SVCDIR:-/lib/rc/init.d}/*; do
|
2007-11-23 19:22:15 +05:30
|
|
|
[ -e "${x}" ] || continue
|
|
|
|
case ${x##*/} in
|
2007-12-14 17:47:57 +05:30
|
|
|
depconfig|deptree|ksoftlevel|rc.log);;
|
2007-11-23 19:22:15 +05:30
|
|
|
*) rm -rf "${x}";;
|
|
|
|
esac
|
|
|
|
done
|
2007-04-05 16:48:42 +05:30
|
|
|
else
|
|
|
|
mount_svcdir
|
2008-01-31 15:18:58 +05:30
|
|
|
retval=$?
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
|
|
|
|
echo "sysinit" > "${RC_SVCDIR}/softlevel"
|
|
|
|
|
|
|
|
# sysinit is now done, so allow init scripts to run normally
|
|
|
|
[ -e /dev/.rcsysinit ] && rm -f /dev/.rcsysinit
|
|
|
|
|
2008-01-31 15:18:58 +05:30
|
|
|
exit ${retval}
|