check upload_suite and not only default_suite.
Signed-off-by: Joerg Jaspert <joerg@debian.org>
+2008-11-01 Joerg Jaspert <joerg@debian.org>
+
+ * dak/process_unchecked.py (check_files): Also check the
+ upload_suite for uploads. I guess we could kill the default_suite
+ totally, but for now we just look into the upload_suite one too.
+
+ * config/debian-security/dak.conf: Let DefaultSuite be stable
+
2008-10-27 Joerg Jaspert <joerg@debian.org>
* scripts/debian/mkfilesindices: Remove oldstable
};
SecurityQueueHandling "true";
SecurityQueueBuild "true";
- DefaultSuite "oldstable";
+ DefaultSuite "stable";
SuiteSuffix "updates";
OverrideMaintainer "dak@security.debian.org";
StableDislocationSupport "false";
# Ensure the architecture of the .deb is one we know about.
default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
architecture = control.Find("Architecture")
- if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)):
+ upload_suite = changes["distribution"]
+ if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)) and architecture not in Cnf.ValueList("Suite::%s::Architectures" % (upload_suite)):
reject("Unknown architecture '%s'." % (architecture))
# Ensure the architecture of the .deb is one of the ones