From 442f1a531440d0c79c8cfe0d29b32b3f17896930 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Sat, 2 Jun 2007 18:05:30 +0200 Subject: [PATCH] cron.d/100syncarchive: Remove some needless warnings We already skipped kfreebsd-i386 here since that is a needless warning. Do the same for kfreebsd-amd64 and armel. --- cron.d/100syncarchive | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cron.d/100syncarchive b/cron.d/100syncarchive index 55589d8..928fefc 100755 --- a/cron.d/100syncarchive +++ b/cron.d/100syncarchive @@ -22,6 +22,8 @@ then for arch in `eval echo $foo` do test ! "$arch" = "kfreebsd-i386" || continue + test ! "$arch" = "kfreebsd-amd64" || continue + test ! "$arch" = "armel" || continue for part in ${parts} do echo retrieve Packages $dist/$part/$arch @@ -57,6 +59,8 @@ else for arch in `eval echo $foo` do test ! "$arch" = "kfreebsd-i386" || continue + test ! "$arch" = "kfreebsd-amd64" || continue + test ! "$arch" = "armel" || continue for part in ${parts} do echo retrieve Packages $dist/$part/$arch -- 2.39.2