]> git.decadent.org.uk Git - dak.git/commitdiff
p-n
authorJoerg Jaspert <joerg@debian.org>
Thu, 2 Apr 2009 20:00:51 +0000 (22:00 +0200)
committerJoerg Jaspert <joerg@debian.org>
Thu, 2 Apr 2009 20:00:51 +0000 (22:00 +0200)
this should fix the case where files moved into [o-]p-u-new are
unreadable for everyone but the one running p-u-new. The code
simply didnt set the permissions right, defaulting to 0660 instead.

Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/process_new.py

index acc4522f31046141babcefb776017e14194df674..3f6bbdbf5000f4c41563c9bf8b699bf35b4d16bd 100755 (executable)
@@ -854,7 +854,7 @@ def move_to_holding(suite, queue_dir):
        return
     Logger.log(["Moving to %s" % (suite,), Upload.pkg.changes_file])
     Upload.dump_vars(queue_dir)
-    move_to_dir(queue_dir)
+    move_to_dir(queue_dir, perms=0664)
     os.unlink(Upload.pkg.changes_file[:-8]+".dak")
 
 def _accept():