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 58CE010FB0 for ; Mon, 4 Nov 2013 15:52:15 +0000 (UTC) Received: (qmail 11722 invoked by uid 500); 4 Nov 2013 15:50:24 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 11229 invoked by uid 500); 4 Nov 2013 15:50: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 9690 invoked by uid 99); 4 Nov 2013 15:48:49 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Nov 2013 15:48:49 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 765823A7DD; Mon, 4 Nov 2013 15:48:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mlsorensen@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/4.2 to 5cc9b1d Date: Mon, 4 Nov 2013 15:48:49 +0000 (UTC) Updated Branches: refs/heads/4.2 9bf30479f -> 5cc9b1de6 CLOUDSTACK-3216 /var/log/cloud.log did not have a logrotate script, here is a basic one. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/5cc9b1de Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/5cc9b1de Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/5cc9b1de Branch: refs/heads/4.2 Commit: 5cc9b1de661f3189dcd1e3eb65d7e1d15c05e9e6 Parents: 9bf3047 Author: Marcus Sorensen Authored: Mon Nov 4 08:46:29 2013 -0700 Committer: Marcus Sorensen Committed: Mon Nov 4 08:48:37 2013 -0700 ---------------------------------------------------------------------- patches/systemvm/debian/config/etc/logrotate.d/cloud | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/5cc9b1de/patches/systemvm/debian/config/etc/logrotate.d/cloud ---------------------------------------------------------------------- diff --git a/patches/systemvm/debian/config/etc/logrotate.d/cloud b/patches/systemvm/debian/config/etc/logrotate.d/cloud new file mode 100644 index 0000000..40c4203 --- /dev/null +++ b/patches/systemvm/debian/config/etc/logrotate.d/cloud @@ -0,0 +1,11 @@ +/var/log/cloud.log { + rotate 4 + daily + missingok + notifempty + compress + delaycompress + postrotate + pkill socat > /dev/null + endscript +}