Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8E1811034A for ; Sun, 9 Nov 2014 12:11:05 +0000 (UTC) Received: (qmail 21420 invoked by uid 500); 9 Nov 2014 12:11:05 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 21387 invoked by uid 500); 9 Nov 2014 12:11:05 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 21376 invoked by uid 99); 9 Nov 2014 12:11:05 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Nov 2014 12:11:05 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D1B5A934F46; Sun, 9 Nov 2014 12:11:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dahn@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/4.4 to 380ecf2 Date: Sun, 9 Nov 2014 12:11:04 +0000 (UTC) Repository: cloudstack Updated Branches: refs/heads/4.4 a458383d0 -> 380ecf225 Logrotate is called from crontab. Debian crontab does not include everything in it's path. Therefore reference to these bins need to be absoluut. Signed-off-by: Daan Hoogland Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/380ecf22 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/380ecf22 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/380ecf22 Branch: refs/heads/4.4 Commit: 380ecf2253dd03905df25f30422b67ec1b17ff19 Parents: a458383 Author: Joris van Lieshout Authored: Sat Nov 8 17:21:43 2014 +0100 Committer: Daan Hoogland Committed: Sun Nov 9 13:10:50 2014 +0100 ---------------------------------------------------------------------- systemvm/patches/debian/config/etc/logrotate.d/rsyslog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/380ecf22/systemvm/patches/debian/config/etc/logrotate.d/rsyslog ---------------------------------------------------------------------- diff --git a/systemvm/patches/debian/config/etc/logrotate.d/rsyslog b/systemvm/patches/debian/config/etc/logrotate.d/rsyslog index e18271e..ecf32d8 100644 --- a/systemvm/patches/debian/config/etc/logrotate.d/rsyslog +++ b/systemvm/patches/debian/config/etc/logrotate.d/rsyslog @@ -7,7 +7,7 @@ delaycompress compress postrotate - invoke-rc.d rsyslog reload > /dev/null + /usr/sbin/invoke-rc.d rsyslog reload > /dev/null endscript } @@ -32,6 +32,6 @@ delaycompress sharedscripts postrotate - invoke-rc.d rsyslog reload > /dev/null + /usr/sbin/nvoke-rc.d rsyslog reload > /dev/null endscript }