Stop using needless {} in vars

This commit is contained in:
Roy Marples
2009-04-26 21:13:26 +00:00
parent 59574780da
commit 2b866f264f
11 changed files with 198 additions and 191 deletions

View File

@@ -4,11 +4,11 @@
# 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
RC_SVCDIR=${RC_SVCDIR:-/@LIB@/rc/init.d}
: ${RC_SVCDIR:=/@LIB@/rc/init.d}
case "$(rc --sys)" in
OPENVZ|VSERVER) rm -rf "${RC_SVCDIR}"/*;;
*) if mountinfo --quiet "${RC_SVCDIR}"; then
rm -rf "${RC_SVCDIR}"/*
OPENVZ|VSERVER) rm -rf "$RC_SVCDIR"/*;;
*) if mountinfo --quiet "$RC_SVCDIR"; then
rm -rf "$RC_SVCDIR"/*
else
mount_svcdir
fi
@@ -16,9 +16,9 @@ case "$(rc --sys)" in
esac
retval=$?
if [ -e "${RC_LIBDIR}"/cache/deptree ]; then
cp -p "${RC_LIBDIR}"/cache/* "${RC_SVCDIR}" 2>/dev/null
if [ -e "$RC_LIBDIR"/cache/deptree ]; then
cp -p "$RC_LIBDIR"/cache/* "$RC_SVCDIR" 2>/dev/null
fi
echo "sysinit" > "${RC_SVCDIR}/softlevel"
exit ${retval}
echo sysinit >"$RC_SVCDIR"/softlevel
exit $retval