Compare commits

..

2 Commits

Author SHA1 Message Date
William Hubbs
6ceb62969a release openrc-0.10.4 2012-07-02 13:50:05 -05:00
William Hubbs
d5ecc9d746 fix handling of /run for vserver
Mount can't be used in vservers, but /run is still needed. So we create
the directory and clear it out instead of mounting a tmpfs in that
situation.

reported-by: <patrick@gentoo.org>
X-Gentoo-Bug: 423739
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=423739
2012-07-02 13:47:58 -05:00
2 changed files with 15 additions and 6 deletions

View File

@@ -1,3 +1,3 @@
NAME= openrc NAME= openrc
VERSION= 0.10.3 VERSION= 0.10.4
PKG= ${NAME}-${VERSION} PKG= ${NAME}-${VERSION}

View File

@@ -37,14 +37,23 @@ fi
# /run is a new directory for storing volatile runtime data. # /run is a new directory for storing volatile runtime data.
# Read more about /run at https://lwn.net/Articles/436012 # Read more about /run at https://lwn.net/Articles/436012
sys="$(rc --sys)"
if [ ! -d /run ]; then if [ ! -d /run ]; then
eerror "The /run directory does not exist. Unable to continue." if [ "$sys" = VSERVER ]; then
return 1 if [ -e /run ]; then
rm -rf /run
fi
mkdir /run
else
eerror "The /run directory does not exist. Unable to continue."
return 1
fi
fi fi
if mountinfo -q /run; then if [ "$sys" = VSERVER ]; then
einfo "/run is already mounted, skipping" rm -rf /run/*
else elif ! mountinfo -q /run; then
ebegin "Mounting /run" ebegin "Mounting /run"
rc=0 rc=0
if ! fstabinfo --mount /run; then if ! fstabinfo --mount /run; then