From owner-freebsd-questions@FreeBSD.ORG Mon Oct 26 11:14:09 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 374A510656BC for ; Mon, 26 Oct 2009 11:14:09 +0000 (UTC) (envelope-from subbsd@gmail.com) Received: from mail-ew0-f218.google.com (mail-ew0-f218.google.com [209.85.219.218]) by mx1.freebsd.org (Postfix) with ESMTP id D71FC8FC2B for ; Mon, 26 Oct 2009 11:14:07 +0000 (UTC) Received: by ewy18 with SMTP id 18so10347197ewy.43 for ; Mon, 26 Oct 2009 04:14:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=qraGMG+774wWaFZd4fc2suxgvZsgJXFAqRBUg6djGek=; b=B9d5EB4VSDM5TMr64rutl2c5agQJGOZmS6OXOICkauBxm0wVdRoBIZuQIb0ShGVN4+ x6NJXxc5vOKFg31drKE5z0CYBXIlTjhSWo3WQp56Dr2HmiwkZ0T3CX54b9jNS0i85hf1 v4z/dgVldjUv8j+dIXTG/JnkeMvDW31qrpiY8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=iUPza2Xa6EmlgMhIWvf2/cdoylVXcVjlwlrSh1mMRyI+ounHp/f7wLsGgJq7CzRZ1+ rF4lNL8h4FzCl/SADSVFiXufky8kZCh9K1yP2A1uTPTOe1aqTK5ayVdarOHmR+DHAOtK OVIXSRxWUCRE8d4udQyHreSpqglG00ae6vt7I= MIME-Version: 1.0 Received: by 10.210.3.21 with SMTP id 21mr6538992ebc.40.1256554067579; Mon, 26 Oct 2009 03:47:47 -0700 (PDT) Date: Mon, 26 Oct 2009 13:47:47 +0300 Message-ID: <8237b2240910260347o7cd44313s2ea87fc9198a3123@mail.gmail.com> From: Oleg Ole To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: some ftp mirrors is wrong or inconsistently X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Oct 2009 11:14:09 -0000 Hello maillist Some ftp servers from official ftp mirrors ( http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html) is incorrect or out of sync. For example, test scripts ( require ftp/lftp ) says that only 90 from 167 ;) have 8.0-RC1.iso -- #!/bin/sh cd /tmp fetch http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html SITE=`egrep -E "(^target)" /tmp/mirrors-ftp.html |tr "<>" " " |awk {'printf $2"\n"'}` for HST in ${SITE}; do echo $HST lftp -e "ls; quit" ${HST}ISO-IMAGES-amd64/8.0/ done --