commit dracut for openSUSE:Factory
Hello community, here is the log from the commit of package dracut for openSUSE:Factory checked in at 2017-02-02 15:30:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dracut (Old) and /work/SRC/openSUSE:Factory/.dracut.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "dracut" Changes: -------- --- /work/SRC/openSUSE:Factory/dracut/dracut.changes 2017-01-24 10:28:56.328366958 +0100 +++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes 2017-02-03 17:36:02.278825050 +0100 @@ -1,0 +2,6 @@ +Thu Jan 26 10:10:58 UTC 2017 - daniel.molkentin@suse.com + +- Allow booting from degrated MD arrays with systemd + * add 0505-Allow-booting-from-degraded-MD-RAID-arrays.patch + +------------------------------------------------------------------- New: ---- 0505-Allow-booting-from-degraded-MD-RAID-arrays.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dracut.spec ++++++ --- /var/tmp/diff_new_pack.svt9vE/_old 2017-02-03 17:36:04.626492766 +0100 +++ /var/tmp/diff_new_pack.svt9vE/_new 2017-02-03 17:36:04.630492200 +0100 @@ -182,6 +182,7 @@ Patch502: 0502-persistent_device_policy_param_enhance.patch Patch503: 0503-dracut.sh-create-the-initramfs-non-world-readable-al.patch Patch504: 0504-ibft-fix-boot-flag-check.patch +Patch505: 0505-Allow-booting-from-degraded-MD-RAID-arrays.patch BuildRequires: asciidoc BuildRequires: bash @@ -388,6 +389,7 @@ %patch502 -p1 %patch503 -p1 %patch504 -p1 +%patch505 -p1 %build %configure\ ++++++ 0505-Allow-booting-from-degraded-MD-RAID-arrays.patch ++++++
From a113e853f71050aa6f05982ecf16660603f98825 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin <dmolkentin@suse.com> Date: Mon, 30 Jan 2017 11:10:40 +0100 Subject: [PATCH] Allow booting from degraded MD RAID arrays
bnc#1017695 --- modules.d/90mdraid/module-setup.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules.d/90mdraid/module-setup.sh b/modules.d/90mdraid/module-setup.sh index 13ef9fe..962b3a4 100755 --- a/modules.d/90mdraid/module-setup.sh +++ b/modules.d/90mdraid/module-setup.sh @@ -119,6 +119,12 @@ install() { if [ -e $systemdsystemunitdir/mdmon@.service ]; then inst_simple $systemdsystemunitdir/mdmon@.service fi + if [ -e $systemdsystemunitdir/mdadm-last-resort@.service ]; then + inst_simple $systemdsystemunitdir/mdadm-last-resort@.service + fi + if [ -e $systemdsystemunitdir/mdadm-last-resort@.timer ]; then + inst_simple $systemdsystemunitdir/mdadm-last-resort@.timer + fi fi inst_hook pre-shutdown 30 "$moddir/mdmon-pre-shutdown.sh" } -- 2.10.2
participants (1)
-
root@hilbertn.suse.de