Do not try to remount /run read only

On a diskless system, doing this causes the system to lock up during
shutdown.
This commit is contained in:
Alexey Shvetsov 2012-05-02 14:40:16 -05:00 committed by William Hubbs
parent 8c82637e76
commit ca7d67021e

View File

@ -23,7 +23,7 @@ start()
# Bug 381783
local rc_svcdir=$(echo $RC_SVCDIR | sed 's:/lib\(32\|64\)\?/:/lib(32|64)?/:g')
local m="/dev|/dev/.*|/proc|/proc.*|/sys|/sys/.*|${rc_svcdir}" x= fs=
local m="/dev|/dev/.*|/proc|/proc.*|/sys|/sys/.*|/run|${rc_svcdir}" x= fs=
m="$m|/bin|/sbin|/lib(32|64)?|/libexec"
# RC_NO_UMOUNTS is an env var that can be set by plugins
local IFS="$IFS:"