Displaying 2 results from an estimated 2 matches for "1832b89".
Did you mean:
18328
2011 Jul 29
0
[PATCH node] fix dracut plugin wildcard handling
...964
Signed-off-by: Mike Burns <mburns at redhat.com>
---
dracut/install | 1 +
dracut/ovirt-cleanup.sh | 8 ++++----
scripts/ovirt-boot-functions | 2 +-
3 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/dracut/install b/dracut/install
index f3f2f07..1832b89 100755
--- a/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-clea...
2011 Aug 25
0
[PATCH node] always remove HostVG in dracut when reinstall/uninstall/firstboot passed
rhbz#733274
Signed-off-by: Mike Burns <mburns at redhat.com>
---
dracut/install | 1 +
dracut/ovirt-cleanup.sh | 14 +++++++++++---
2 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/dracut/install b/dracut/install
index 1832b89..000272a 100755
--- a/dracut/install
+++ b/dracut/install
@@ -2,6 +2,7 @@
inst yes
inst head
+inst awk
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/ovir...