]> git.decadent.org.uk Git - dak.git/commitdiff
Warn about oldstable NEW too
authorJames Troup <james@nocrew.org>
Wed, 5 Mar 2003 15:57:41 +0000 (15:57 +0000)
committerJames Troup <james@nocrew.org>
Wed, 5 Mar 2003 15:57:41 +0000 (15:57 +0000)
lisa

diff --git a/lisa b/lisa
index d7e73cfb7dbf817c4357a391381fd55efc387f1c..b092dbe80a96810cdf71f9f7bba5f5e1346a9a1a 100755 (executable)
--- a/lisa
+++ b/lisa
@@ -2,7 +2,7 @@
 
 # Handles NEW and BYHAND packages
 # Copyright (C) 2001, 2002, 2003  James Troup <james@nocrew.org>
-# $Id: lisa,v 1.21 2003-02-11 19:39:28 troup Exp $
+# $Id: lisa,v 1.22 2003-03-05 15:57:41 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
@@ -42,7 +42,7 @@ import apt_pkg, apt_inst;
 import db_access, fernanda, katie, logging, utils;
 
 # Globals
-lisa_version = "$Revision: 1.21 $";
+lisa_version = "$Revision: 1.22 $";
 
 Cnf = None;
 Options = None;
@@ -172,6 +172,8 @@ def determine_new (changes, files):
 
     if changes["suite"].has_key("stable"):
         print "WARNING: overrides will be added for stable!";
+    if changes["suite"].has_key("oldstable"):
+        print "WARNING: overrides will be added for OLDstable!";
     for pkg in new.keys():
         if new[pkg].has_key("othercomponents"):
             print "WARNING: %s already present in %s distribution." % (pkg, new[pkg]["othercomponents"]);