- Fix upgrade of doc sub package to remove links replaced by directories
(RHEL-48798) Resolves: RHEL-48798
This commit is contained in:
parent
95523016c1
commit
66e919931d
18
bind.spec
18
bind.spec
@ -80,7 +80,7 @@ License: MPL-2.0 AND ISC AND MIT AND BSD-3-Clause AND BSD-2-Clause
|
|||||||
# Before rebasing bind, ensure bind-dyndb-ldap is ready to be rebuild and use side-tag with it.
|
# Before rebasing bind, ensure bind-dyndb-ldap is ready to be rebuild and use side-tag with it.
|
||||||
# Updating just bind will cause freeipa-dns-server package to be uninstallable.
|
# Updating just bind will cause freeipa-dns-server package to be uninstallable.
|
||||||
Version: 9.18.33
|
Version: 9.18.33
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Epoch: 32
|
Epoch: 32
|
||||||
Url: https://www.isc.org/downloads/bind/
|
Url: https://www.isc.org/downloads/bind/
|
||||||
#
|
#
|
||||||
@ -315,6 +315,18 @@ This package contains BIND 9 Administrator Reference Manual
|
|||||||
in HTML and PDF format.
|
in HTML and PDF format.
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
%pretrans doc -p <lua>
|
||||||
|
paths = {
|
||||||
|
'%{_pkgdocdir}/html/_static/css',
|
||||||
|
'%{_pkgdocdir}/html/_static/js'
|
||||||
|
}
|
||||||
|
for _, path in ipairs(paths) do
|
||||||
|
st = posix.stat(path)
|
||||||
|
if st and st.type == "link" then
|
||||||
|
os.remove(path)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
@ -900,6 +912,10 @@ fi;
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 13 2025 Thomas Woerner <twoerner@redhat.com> - 32:9.18.33-3
|
||||||
|
- Fix upgrade of doc sub package to remove links replaced by directories
|
||||||
|
(RHEL-48798)
|
||||||
|
|
||||||
* Sun Feb 02 2025 Petr Menšík <pemensik@redhat.com> - 32:9.18.33-2
|
* Sun Feb 02 2025 Petr Menšík <pemensik@redhat.com> - 32:9.18.33-2
|
||||||
- Add nsupdate TLS support (RHEL-77354)
|
- Add nsupdate TLS support (RHEL-77354)
|
||||||
- Include a test for nsupdate changes
|
- Include a test for nsupdate changes
|
||||||
|
Loading…
Reference in New Issue
Block a user