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-06-21 21:01:04 +05:30
|
|
|
RC_SVCDIR=${RC_SVCDIR:-/@LIB@/rc/init.d}
|
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.$$"
|
2008-11-03 21:01:01 +05:30
|
|
|
rm -rf "${RC_SVCDIR}"/*
|
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
|
|
|
|
|
2008-11-03 21:01:01 +05:30
|
|
|
if [ -e "${RC_LIBDIR}"/cache/deptree ]; then
|
|
|
|
cp -p "${RC_LIBDIR}"/cache/* "${RC_SVCDIR}" 2>/dev/null
|
|
|
|
fi
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
echo "sysinit" > "${RC_SVCDIR}/softlevel"
|
2008-01-31 15:18:58 +05:30
|
|
|
exit ${retval}
|