[23940] in Source-Commits
/svn/athena r23550 - trunk/debathena/scripts
daemon@ATHENA.MIT.EDU (Evan Broder)
Fri Mar 6 18:36:01 2009
Date: Fri, 6 Mar 2009 18:35:54 -0500
From: Evan Broder <broder@MIT.EDU>
Message-Id: <200903062335.n26NZsAA024563@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: broder
Date: 2009-03-06 18:35:54 -0500 (Fri, 06 Mar 2009)
New Revision: 23550
Modified:
trunk/debathena/scripts/ood-packages
Log:
Exclude the Linerva packages in ood-packages.
Modified: trunk/debathena/scripts/ood-packages
===================================================================
--- trunk/debathena/scripts/ood-packages 2009-03-06 22:21:39 UTC (rev 23549)
+++ trunk/debathena/scripts/ood-packages 2009-03-06 23:35:54 UTC (rev 23550)
@@ -89,7 +89,13 @@
# Display the package name if the apt repository version does not
# match the current version.
if [ "x$aptver" != "x$curver" ]; then
- echo "$pkg"
+ case "$pkg" in
+ debathena-linerva*)
+ ;;
+ *)
+ echo "$pkg"
+ ;;
+ esac
fi
done