From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 43D82138A1A for ; Sun, 23 Nov 2014 18:47:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECC81E0B17; Sun, 23 Nov 2014 18:47:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0750CE0B0C for ; Sun, 23 Nov 2014 18:47:11 +0000 (UTC) Received: from [192.168.1.100] (c-98-218-46-55.hsd1.md.comcast.net [98.218.46.55]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: mjo) by smtp.gentoo.org (Postfix) with ESMTPSA id C95A6340486 for ; Sun, 23 Nov 2014 18:47:10 +0000 (UTC) Message-ID: <54722BA8.4090300@gentoo.org> Date: Sun, 23 Nov 2014 13:47:04 -0500 From: Michael Orlitzky User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.8.0 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 To: gentoo-dev@lists.gentoo.org Subject: [gentoo-dev] Doomsayers needed Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Archives-Salt: b886dc47-978d-47f9-91f5-fa6204d696f0 X-Archives-Hash: 53909712cb02968c928ba51a9a6c1313 We've got a bug in Nagios's `ping` command format detection: https://bugs.gentoo.org/show_bug.cgi?id=468296 It's easy to reproduce by taking down your "lo" interface, or by filtering all icmp packets in iptables. Fortunately, you can override the auto-detection by passing it a magic string, and that works around the bug: --with-ping-command="/bin/ping -n -U -w %d -c %d %s" --with-ping6-command="/bin/ping6 -n -U -w %d -c %d %s" Those are the formats and executable locations that get detected on my machine. Can anyone think of a case where hard-coding these (using $ROOT) would backfire on me?