From: Frank Lichtenheld Date: Tue, 11 Sep 2007 23:43:41 +0000 (+0200) Subject: Packages::Search: Fix fallback suites X-Git-Url: https://git.deb.at/?p=deb%2Fpackages.git;a=commitdiff_plain;h=2dc3efc2e8bcf87332099291fe7bf51f3c67d393 Packages::Search: Fix fallback suites Leftover from the codenames move. --- diff --git a/lib/Packages/Search.pm b/lib/Packages/Search.pm index ebb1b7d..d387267 100644 --- a/lib/Packages/Search.pm +++ b/lib/Packages/Search.pm @@ -103,11 +103,11 @@ sub read_entry { #FIXME: make configurable my %fallback_suites = ( - 'oldstable-backports' => 'oldstable', - 'oldstable-volatile' => 'oldstable', - 'stable-backports' => 'stable', - 'stable-volatile' => 'stable', - experimental => 'unstable' ); + 'sarge-backports' => 'sarge', + 'sarge-volatile' => 'sarge', + 'etch-backports' => 'etch', + 'etch-volatile' => 'etch', + experimental => 'sid' ); sub read_entry_simple { my ($hash, $key, $archives, $suite) = @_;