Displaying 1 result from an estimated 1 matches for "775bcf8".
Did you mean:
  775b68
  
2011 Jul 29
0
[PATCH node] fix dracut plugin wildcard handling
.../dracut/install
+++ b/dracut/install
@@ -1,6 +1,7 @@
 #!/bin/bash
 inst yes
+inst head
 inst_hook pre-pivot 01 "$moddir/ovirt-cleanup.sh"
 inst_simple "$moddir/ovirt-boot-functions" /sbin/ovirt-boot-functions
diff --git a/dracut/ovirt-cleanup.sh b/dracut/ovirt-cleanup.sh
index 775bcf8..a6762cf 100755
--- a/dracut/ovirt-cleanup.sh
+++ b/dracut/ovirt-cleanup.sh
@@ -34,9 +34,9 @@ fi
 # Blank entry will result in getting first disk
 if getarg storage_init; then
-    storage_init=$(getarg storage_init)
+    storage_init="$(sed -r 's/^.*storage_init=([^ ]*) .*$/\1/' /pro...