On 3/19/19 4:13 AM, Andrea Bolognani wrote:
On Mon, 2019-03-18 at 15:35 -0400, Cole Robinson wrote:
> Since Fedora 28 (our minimum supported build), ldconfig is called
> automatically for us:
>
>
https://fedoraproject.org/wiki/Changes/Removing_ldconfig_scriptlets
>
> These changes appear to be implemented for rhel > 7 as well, so only
> run ldconfig on rhel7
s/rhel/RHEL/g
Also we are allowed to say "RHEL 8" now ;)
[...]
> +++ b/libvirt.spec.in
> @@ -1477,12 +1477,16 @@ exit 0
>
> %post client
>
> +%if 0%{?rhel} == 7
> /sbin/ldconfig
> +%endif
> %systemd_post libvirt-guests.service
>
> %postun client
>
> +%if 0%{?rhel} == 7
> /sbin/ldconfig
> +%endif
> %systemd_postun libvirt-guests.service
>
> %triggerun client -- libvirt < 0.9.4
IIUC ldconfig should be called after installing the libraries, but
here we're calling it in %post(un) for the client subpackage which
I believe is incorrect. We should fix that too.
Calling /sbin/ldconfig from postun is recommended on fedora < 28 (and
thus I presume rhel7), according to:
https://docs.fedoraproject.org/en-US/packaging-guidelines/Scriptlets/
The wiki page in the git commit also indicates that previously packages
would call /sbin/ldconfig on postun too, with the %postun -p
/sbin/ldconfig call
Your changes look good otherwise, and it doesn't really matter
in
which order the changes are applied, so
Reviewed-by: Andrea Bolognani <abologna(a)redhat.com>
I'll wait until friday to push either incase anyone else has comments
Thanks,
Cole