From 55e563755c9f2a08950b2d46000ae8a800c5b579 Mon Sep 17 00:00:00 2001 From: James Troup Date: Tue, 13 Feb 2007 01:07:46 +0000 Subject: [PATCH] [rmurray] teach control_overrides about untouchable suites. --- ChangeLog | 3 +++ dak/control_overrides.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 725c24c6..f9f45f97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-02-08 Ryan Murray + * dak/control_overrides.py (main): refuse to operate on + untouchable suites. + * config/debian/pseudo-packages.maintainers: drop install, installation, boot-floppy, slink-cd, potato-cd and nonus.debian.org. Update base. diff --git a/dak/control_overrides.py b/dak/control_overrides.py index 69949e24..01eee0ed 100755 --- a/dak/control_overrides.py +++ b/dak/control_overrides.py @@ -282,6 +282,9 @@ def main (): if action == "list": list(suite, component, type) else: + if Cnf.has_key("Suite::%s::Untouchable" % suite) and Cnf["Suite::%s::Untouchable" % suite] != 0: + daklib.utils.fubar("%s: suite is untouchable" % suite) + Logger = daklib.logging.Logger(Cnf, "control-overrides") if file_list: for file in file_list: -- 2.39.2