From 6251c0163d1097ccaa844b06943b8e5bee857fd9 Mon Sep 17 00:00:00 2001 From: Tomas Hozza Date: Nov 14 2014 13:04:39 +0000 Subject: Fixed systemctl path in logrotate configuration (#1148360) Signed-off-by: Tomas Hozza --- diff --git a/bind.spec b/bind.spec index cb8d734..fe91e81 100644 --- a/bind.spec +++ b/bind.spec @@ -826,6 +826,7 @@ rm -rf ${RPM_BUILD_ROOT} * Fri Nov 14 2014 Tomas Hozza 32:9.9.4-16.P2 - All dependencies are now architecture specific - bind-utils now requires explicit version of bind-libs +- Fixed systemctl path in logrotate configuration (#1148360) * Fri Jul 18 2014 Tomas Hozza 32:9.9.4-15.P2 - Rework the chroot creation/destruction workflow (#1097671) diff --git a/named.logrotate b/named.logrotate index 78cacc2..643b068 100644 --- a/named.logrotate +++ b/named.logrotate @@ -3,9 +3,9 @@ su named named create 0644 named named postrotate - /sbin/systemctl reload named.service > /dev/null 2>&1 || true - /sbin/systemctl reload named-chroot.service > /dev/null 2>&1 || true - /sbin/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.service > /dev/null 2>&1 || true + /usr/bin/systemctl reload named-chroot.service > /dev/null 2>&1 || true + /usr/bin/systemctl reload named-sdb.service > /dev/null 2>&1 || true + /usr/bin/systemctl reload named-sdb-chroot.service > /dev/null 2>&1 || true endscript }