From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sam Johnston Subject: bug: chk fails to check for iproute tools Date: Fri, 8 Apr 2005 09:09:59 +0100 Message-ID: Reply-To: Sam Johnston Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Morning all, I lost access to a colo box yesterday because iproute wasn't installed. Can someone please check this in as check_iproute (unless you can see a good reason not to) so as to save someone else from suffering the same fate. #!/bin/bash # CHECK-INSTALL function error { echo 'Check for iproute (ip addr) failed.' exit 1 } ip addr list || error Thanks, Sam