]> git.decadent.org.uk Git - dak.git/commitdiff
make files moved to {o,}p-u-new world-readable
authorPhilipp Kern <pkern@debian.org>
Sun, 30 Nov 2008 07:21:36 +0000 (08:21 +0100)
committerPhilipp Kern <pkern@debian.org>
Thu, 4 Dec 2008 20:07:46 +0000 (20:07 +0000)
2008-11-30  Philipp Kern  <pkern@debian.org>

        * dak/process_unchecked.py (do_stableupdate, do_oldstableupdate):
        move files to NEW for {old,}stable-proposed-updates world-readable
        (Closes: #368056)

ChangeLog
dak/process_unchecked.py

index d099e0c059b1af0c0db6a48c9131c51aa5cf4adc..e63d3ce07845c15922a17eff6a2568b7259f92f0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-30  Philipp Kern  <pkern@debian.org>
+
+       * dak/process_unchecked.py (do_stableupdate, do_oldstableupdate):
+       move files to NEW for {old,}stable-proposed-updates world-readable
+       (Closes: #368056)
+
 2008-11-30  Joerg Jaspert  <joerg@debian.org>
 
        * config/debian/apt.conf: Lets generate experimental content
index 0e6b852e6aaac8830b34829564d24e5ca7169b57..690c1c115e19a51f66f29244b09c33e6bb8d0684 100755 (executable)
@@ -1303,7 +1303,7 @@ def do_stableupdate (summary, short_summary):
     Logger.log(["Moving to proposed-updates", pkg.changes_file]);
 
     Upload.dump_vars(Cnf["Dir::Queue::ProposedUpdates"]);
-    move_to_dir(Cnf["Dir::Queue::ProposedUpdates"])
+    move_to_dir(Cnf["Dir::Queue::ProposedUpdates"], perms=0664)
 
     # Check for override disparities
     Upload.Subst["__SUMMARY__"] = summary;
@@ -1332,7 +1332,7 @@ def do_oldstableupdate (summary, short_summary):
     Logger.log(["Moving to oldstable-proposed-updates", pkg.changes_file]);
 
     Upload.dump_vars(Cnf["Dir::Queue::OldProposedUpdates"]);
-    move_to_dir(Cnf["Dir::Queue::OldProposedUpdates"])
+    move_to_dir(Cnf["Dir::Queue::OldProposedUpdates"], perms=0664)
 
     # Check for override disparities
     Upload.Subst["__SUMMARY__"] = summary;