X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=katie;h=8b820902d144c7123cc82660b1dc41f8078f35fa;hb=56230a92433d8ff0dce6ac5cbe0b97fd07b324af;hp=ed35d8dcc8984db7189d4a7ea4d82725deecd973;hpb=5144a464766f5c2ed592b5fa81e2943992f0c1fe;p=dak.git diff --git a/katie b/katie index ed35d8dc..8b820902 100755 --- a/katie +++ b/katie @@ -2,7 +2,7 @@ # Installs Debian packaes # Copyright (C) 2000 James Troup -# $Id: katie,v 1.15 2000-12-20 08:15:35 troup Exp $ +# $Id: katie,v 1.16 2000-12-20 08:25:56 troup Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -217,6 +217,11 @@ def check_changes(filename): del changes["distribution"]["frozen"] reject_message = reject_message + "Mapping frozen to unstable.\n" + # Map testing to unstable + if changes["distribution"].has_key("testing"): + del changes["distribution"]["testing"] + reject_message = reject_message + "Mapping testing to unstable.\n" + # Ensure target distributions exist for i in changes["distribution"].keys(): if not Cnf.has_key("Suite::%s" % (i)):