]> git.decadent.org.uk Git - dak.git/commitdiff
Map testing to unstable
authorJames Troup <james@nocrew.org>
Wed, 20 Dec 2000 08:25:56 +0000 (08:25 +0000)
committerJames Troup <james@nocrew.org>
Wed, 20 Dec 2000 08:25:56 +0000 (08:25 +0000)
katie

diff --git a/katie b/katie
index ed35d8dcc8984db7189d4a7ea4d82725deecd973..8b820902d144c7123cc82660b1dc41f8078f35fa 100755 (executable)
--- a/katie
+++ b/katie
@@ -2,7 +2,7 @@
 
 # Installs Debian packaes
 # Copyright (C) 2000  James Troup <james@nocrew.org>
-# $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)):