Skip to content
Commits on Source (3)
......@@ -8,7 +8,7 @@ set -u
export SCRIPTVARS=/srv/security-master.debian.org/dak/config/debian-security/vars
. $SCRIPTVARS
DISTS="oldoldstable oldstable stable testing"
DISTS="oldstable stable testing"
if [ -e $ftpdir/Archive_Maintenance_In_Progress ]; then
exit 0
......
......@@ -837,11 +837,7 @@ class NoSourceOnlyCheck(Check):
for suite in ('oldstable', 'oldstable-proposed-updates', 'oldstable-security',
'jessie', 'jessie-proposed-updates', 'jessie-security',
'oldstable-backports', 'oldstable-backports-sloppy',
'jessie-backports', 'jessie-backports-sloppy',
'oldoldstable', 'oldoldstable-security',
'wheezy', 'wheezy-security',
'oldoldstable-backports', 'oldoldstable-backports-sloppy',
'wheezy-backports', 'wheezy-backports-sloppy'):
'jessie-backports', 'jessie-backports-sloppy'):
if suite in changes.distributions:
raise Reject('Suite {} is not configured to build arch:all packages. Please include them in your upload'.format(suite))
......
......@@ -114,7 +114,7 @@ ${scriptsdir}/link_morgue \
--morguedir "${PROCESSDIR}"
# And now, maybe, transfer stuff over to stabile...
if [ "$(hostname -s)" != "stabile" ]; then
if [[ "$(hostname -s)" != "stabile" && "$(hostname -s)" != "fasolo" ]]; then
cd "${PROCESSDIR}"
LISTFILE=$(mktemp -p ${TMPDIR} )
......