openrc/sh/init-common-post.sh.in

25 lines
653 B
Bash
Raw Normal View History

2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
# mount $RC_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
2009-04-27 02:43:26 +05:30
: ${RC_SVCDIR:=/@LIB@/rc/init.d}
case "$(rc --sys)" in
2009-04-27 02:43:26 +05:30
OPENVZ|VSERVER) rm -rf "$RC_SVCDIR"/*;;
*) if mountinfo --quiet "$RC_SVCDIR"; then
rm -rf "$RC_SVCDIR"/*
else
mount_svcdir
fi
;;
esac
retval=$?
2009-04-27 02:43:26 +05:30
if [ -e "$RC_LIBDIR"/cache/deptree ]; then
cp -p "$RC_LIBDIR"/cache/* "$RC_SVCDIR" 2>/dev/null
fi
2009-04-27 02:43:26 +05:30
echo sysinit >"$RC_SVCDIR"/softlevel
exit $retval