search for: 33a903d

Displaying 2 results from an estimated 2 matches for "33a903d".

Did you mean: 33903
2011 Jul 23
0
[PATCH] make image minimization optional
...NIMIZER]) AC_CONFIG_FILES([Makefile augeas/Makefile @@ -28,6 +27,7 @@ AC_CONFIG_FILES([Makefile scripts/collectd.conf recipe/Makefile recipe/ovirt-node-image.ks + recipe/image-minimizer.ks ovirt-node.spec ]) AC_OUTPUT diff --git a/ovirt-node.spec.in b/ovirt-node.spec.in index 33a903d..76a5d77 100644 --- a/ovirt-node.spec.in +++ b/ovirt-node.spec.in @@ -80,7 +80,7 @@ however on a development machine to help to build the image. %build aclocal && autoheader && automake --add-missing && autoconf -%configure +%configure --with-image-minimizer make %in...
2011 Jul 23
0
[PATCH] move dracut config and patching to spec
...; liverw=ro diff --git a/dracut/ovirt-dracut.conf b/dracut/ovirt-dracut.conf new file mode 100644 index 0000000..e2f8eec --- /dev/null +++ b/dracut/ovirt-dracut.conf @@ -0,0 +1 @@ +add_dracutmodules+="ovirtnode multipath" diff --git a/ovirt-node.spec.in b/ovirt-node.spec.in index 4bb7baf..33a903d 100644 --- a/ovirt-node.spec.in +++ b/ovirt-node.spec.in @@ -48,6 +48,11 @@ Requires: python-gudev Requires: PyPAM Requires: ethtool Requires: cracklib-python +Requires: dracut +%if 0%{?rhel} +# for applying patches in %post +Requires: patch +%endif BuildAr...