|
Lines 10-15
Link Here
|
| 10 |
start() { |
10 |
start() { |
| 11 |
local retval=0 |
11 |
local retval=0 |
| 12 |
|
12 |
|
|
|
13 |
# |
| 14 |
# EVMS2 support |
| 15 |
# |
| 16 |
if [ -z "${CDBOOT}" -a -f /sbin/evms_activate ] |
| 17 |
then |
| 18 |
ebegin "Activating EVMS2" |
| 19 |
# stderr is redirected because evms_activate will almost always complain |
| 20 |
# about being unable to write its lockfile because / is mounted read-only |
| 21 |
# at this point. It should be of no consequence since there should be no |
| 22 |
# other instances running concurrently during the boot process. |
| 23 |
evms_activate &> /dev/null |
| 24 |
retval=$? |
| 25 |
eend ${retval} |
| 26 |
fi |
| 27 |
|
| 13 |
if [ ! -f /fastboot -a -z "${CDBOOT}" ] |
28 |
if [ ! -f /fastboot -a -z "${CDBOOT}" ] |
| 14 |
then |
29 |
then |
| 15 |
ebegin "Remounting root filesystem read-only (if necessary)" |
30 |
ebegin "Remounting root filesystem read-only (if necessary)" |