diff options
author | Michael Vogt <egon@bottom> | 2007-12-06 14:58:20 +0100 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2007-12-06 14:58:20 +0100 |
commit | ee10ecfe2f815d7681b81f74d1c840176f6b9f16 (patch) | |
tree | bfdbf2f4ff35b79bf373b76ea6d237076db6ff2c | |
parent | 7ce6bd6a759c4bcb9682bc9cc99cb8e37314bdcd (diff) | |
parent | 37bb96cc5991b4e762264a5dcb073bfeb3a48455 (diff) |
* debian/apt.conf.daily:
- print warning if the cache can not be locked (closes: #454561),
thanks to Bastian Kleineidam
-rw-r--r-- | debian/apt.cron.daily | 1 | ||||
-rw-r--r-- | debian/changelog | 5 | ||||
-rwxr-xr-x | test/pre-upload-check.py | 16 |
3 files changed, 5 insertions, 17 deletions
diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 5524c16ee..1d4df56b6 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -172,6 +172,7 @@ fi # check if we can lock the cache and if the cache is clean if ! apt-get check -q -q 2>/dev/null; then + echo "$0: could not lock the APT cache" exit 1 fi diff --git a/debian/changelog b/debian/changelog index 832ee11d4..3154720e5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,8 +18,11 @@ apt (0.7.10) unstable; urgency=low [ Michael Vogt ] * debian/rules - fix https install location + * debian/apt.conf.daily: + - print warning if the cache can not be locked (closes: #454561), + thanks to Bastian Kleineidam - -- Michael Vogt <mvo@debian.org> Wed, 28 Nov 2007 17:10:49 +0100 + -- Michael Vogt <mvo@debian.org> Thu, 06 Dec 2007 14:38:31 +0100 apt (0.7.9) unstable; urgency=low diff --git a/test/pre-upload-check.py b/test/pre-upload-check.py index 373683360..268b3d672 100755 --- a/test/pre-upload-check.py +++ b/test/pre-upload-check.py @@ -120,22 +120,6 @@ class testLocalRepositories(unittest.TestCase): self.assert_(os.path.exists(os.path.join(self.repo,"Packages.gz")), "Packages.gz vanished from local repo") - def testLocalRepo2(self): - repo = os.path.abspath(os.path.join(os.getcwd(), self.repo_dir+"2")) - sources = os.path.join(self.repo, "sources.list") - s = open(sources,"w") - s.write("deb file://%s/ /\n" % repo) - s.close() - - # two times to get at least one i-m-s hit - for i in range(2): - self.assert_(os.path.exists(sources)) - cmd = [self.apt,"update","-o", "Dir::Etc::sourcelist=%s" % sources]+apt_args - res = call(cmd, stdout=stdout, stderr=stderr) - self.assertEqual(res, 0, "local repo2 test failed") - self.assert_(os.path.exists(os.path.join(repo,"Packages.gz")), - "Packages.gz vanished from local repo") - def testInstallFromLocalRepo(self): apt = [self.apt,"-o", "Dir::Etc::sourcelist=%s"% self.sources]+apt_args cmd = apt+["update"] |