@@ -, +, @@ --- .../ucs-4.0-1/base/univention-updater/conffiles/etc/apt/mirror.list | 4 +++- branches/ucs-4.0/ucs-4.0-1/base/univention-updater/debian/changelog | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) --- a/branches/ucs-4.0/ucs-4.0-1/base/univention-updater/conffiles/etc/apt/mirror.list +++ a/branches/ucs-4.0/ucs-4.0-1/base/univention-updater/conffiles/etc/apt/mirror.list @@ -29,7 +29,9 @@ try: end = UCS_Version( end ) print mirror.print_version_repositories( clean = True, dists = False, start = start, end = end ) print mirror.print_security_repositories( clean = True, start = start, end = end, all_security_updates = True ) - print mirror.print_errata_repositories( clean = True, start = UCS_Version('3.0-0'), end = UCS_Version('3.0-2'), all_errata_updates = True ) + ESTART, EEND = UCS_Version('3.0-0'), UCS_Version('3.0-2') + if start <= EEND and end >= ESTART: + print mirror.print_errata_repositories(clean=True, start=ESTART, end=EEND, all_errata_updates=True) print mirror.print_component_repositories(clean=True, start=start, end=end, for_mirror_list=True) except Exception: print '# An error occurred during the repository check. The error message:' --- a/branches/ucs-4.0/ucs-4.0-1/base/univention-updater/debian/changelog +++ a/branches/ucs-4.0/ucs-4.0-1/base/univention-updater/debian/changelog @@ -1,3 +1,9 @@ +univention-updater (10.0.53-16) unstable; urgency=low + + * Bug #29633: Stop mirroring UCS-3.0 errata repositories + + -- Philipp Hahn Tue, 05 May 2015 15:21:28 +0200 + univention-updater (10.0.53-15) unstable; urgency=low * Bug #38248: Fix major version number printing --