public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
From: git@ipfire.org
To: ipfire-scm@lists.ipfire.org
Subject: [IPFire-SCM] [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 15eb7e0a7f984482b8a8ec58131c8797dfe7537a
Date: Sat, 02 Jun 2012 10:20:25 +0200	[thread overview]
Message-ID: <20120602082025.7D5242019C@argus.ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1927 bytes --]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".

The branch, next has been updated
       via  15eb7e0a7f984482b8a8ec58131c8797dfe7537a (commit)
      from  a832f4f33ef12cd4245b5d50bc98b05db2dae2ca (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 15eb7e0a7f984482b8a8ec58131c8797dfe7537a
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Sat Jun 2 10:17:34 2012 +0200

    collectd: fix collectd on machines without rtc.
    
    collectd hangs with 100% cpu usage if there is a very old entry
    in the database. This was created at the first start without internet so
    ntp cannot set the time.

-----------------------------------------------------------------------

Summary of changes:
 src/initscripts/init.d/collectd |   11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

Difference in files:
diff --git a/src/initscripts/init.d/collectd b/src/initscripts/init.d/collectd
index bdb5ca2..544b3e1 100644
--- a/src/initscripts/init.d/collectd
+++ b/src/initscripts/init.d/collectd
@@ -86,9 +86,14 @@ case "$1" in
 			sed -i -e "s|^#LoadPlugin swap|LoadPlugin swap|g" /etc/collectd.conf
 		fi
 
-		boot_mesg "Starting Collection daemon..."
-		/usr/sbin/collectd -C /etc/collectd.conf
-		evaluate_retval
+		if [ $(date +%Y) -gt 2011 ]; then
+			boot_mesg "Starting Collection daemon..."
+			/usr/sbin/collectd -C /etc/collectd.conf
+			evaluate_retval
+		else
+			boot_mesg "collectd: cannot start with incorrect time ($(date))."
+			echo_warning;
+		fi
 		;;
 	stop)
 		boot_mesg "Stopping Collection daemon..."


hooks/post-receive
--
IPFire 2.x development tree

                 reply	other threads:[~2012-06-02  8:20 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120602082025.7D5242019C@argus.ipfire.org \
    --to=git@ipfire.org \
    --cc=ipfire-scm@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox