Fixed systemctl path in logrotate configuration (#1148360)
Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
parent
b6d2bfe08a
commit
075927bb1c
@ -24,7 +24,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
|
|||||||
Name: bind
|
Name: bind
|
||||||
License: ISC
|
License: ISC
|
||||||
Version: 9.9.6
|
Version: 9.9.6
|
||||||
Release: 3%{?PATCHVER:.%{PATCHVER}}%{?PREVER:.%{PREVER}}%{?dist}
|
Release: 4%{?PATCHVER:.%{PATCHVER}}%{?PREVER:.%{PREVER}}%{?dist}
|
||||||
Epoch: 32
|
Epoch: 32
|
||||||
Url: http://www.isc.org/products/BIND/
|
Url: http://www.isc.org/products/BIND/
|
||||||
Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
@ -1023,6 +1023,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 14 2014 Tomas Hozza <thozza@redhat.com> - 32:9.9.6-4
|
||||||
|
- Fixed systemctl path in logrotate configuration (#1148360)
|
||||||
|
|
||||||
* Wed Oct 22 2014 Petr Spacek <pspacek@redhat.com> - 32:9.9.6-3
|
* Wed Oct 22 2014 Petr Spacek <pspacek@redhat.com> - 32:9.9.6-3
|
||||||
- Fix crash during GSS-TSIG processing (#1155334, #1155127)
|
- Fix crash during GSS-TSIG processing (#1155334, #1155127)
|
||||||
introduced in 32:9.9.6-2
|
introduced in 32:9.9.6-2
|
||||||
|
@ -3,9 +3,10 @@
|
|||||||
su named named
|
su named named
|
||||||
create 0644 named named
|
create 0644 named named
|
||||||
postrotate
|
postrotate
|
||||||
/sbin/systemctl reload named.service > /dev/null 2>&1 || true
|
/usr/bin/systemctl reload named.service > /dev/null 2>&1 || true
|
||||||
/sbin/systemctl reload named-chroot.service > /dev/null 2>&1 || true
|
/usr/bin/systemctl reload named-chroot.service > /dev/null 2>&1 || true
|
||||||
/sbin/systemctl reload named-sdb.service > /dev/null 2>&1 || true
|
/usr/bin/systemctl reload named-sdb.service > /dev/null 2>&1 || true
|
||||||
/sbin/systemctl reload named-sdb-chroot.service > /dev/null 2>&1 || true
|
/usr/bin/systemctl reload named-sdb-chroot.service > /dev/null 2>&1 || true
|
||||||
|
/usr/bin/systemctl reload named-pkcs11.service > /dev/null 2>&1 || true
|
||||||
endscript
|
endscript
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user