You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
496 B
14 lines
496 B
#!/bin/sh |
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- |
|
# ex: ts=8 sw=4 sts=4 et filetype=sh |
|
# nodmraid for anaconda / rc.sysinit compatibility |
|
if ! getargbool 1 rd.dm -n rd_NO_DM || getarg nodmraid; then |
|
info "rd.dm=0: removing DM RAID activation" |
|
udevproperty rd_NO_DM=1 |
|
fi |
|
|
|
if [ ! -x /sbin/mdadm ] || ! getargbool 1 rd.md.imsm -n rd_NO_MDIMSM || getarg noiswmd; then |
|
info "rd.md.imsm=0: no MD RAID for imsm/isw raids" |
|
udevproperty rd_NO_MDIMSM=1 |
|
fi |
|
|
|
|