Accepting request 40951 from home:michal-m:branches:Base:System

Copy from home:michal-m:branches:Base:System/mdadm via accept of submit request 40951 revision 2.
Request was accepted with message:
Reviewed ok

OBS-URL: https://build.opensuse.org/request/show/40951
OBS-URL: https://build.opensuse.org/package/show/Base:System/mdadm?expand=0&rev=20
This commit is contained in:
Pavol Rusnak 2010-06-01 22:01:48 +00:00 committed by Git OBS Bridge
parent 8823099133
commit 1064bc8b4f
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 1 15:09:53 CEST 2010 - mmarek@suse.cz
- mkinitrd-setup.sh: Fix for empty $md_devs variable.
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Mar 24 17:37:27 CET 2010 - mmarek@suse.cz Wed Mar 24 17:37:27 CET 2010 - mmarek@suse.cz

View File

@ -90,7 +90,9 @@ fi
# Remember which arrays are needed for the root or swap device and assemble # Remember which arrays are needed for the root or swap device and assemble
# them all during boot. The root= or resume= option might not directly refer to # them all during boot. The root= or resume= option might not directly refer to
# the array. # the array.
md_devs=$(printf '/dev/%s ' $md_devs) if test -n "$md_devs"; then
md_devs=$(printf '/dev/%s ' $md_devs)
fi
save_var need_mdadm save_var need_mdadm
save_var md_devs save_var md_devs

0
ready Normal file
View File