From: Philipp Kern Date: Sun, 30 Nov 2008 07:21:36 +0000 (+0100) Subject: make files moved to {o,}p-u-new world-readable X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=8441f90de1fa8d30f92bf3c6b433b31f91db6d7e;p=dak.git make files moved to {o,}p-u-new world-readable 2008-11-30 Philipp Kern * dak/process_unchecked.py (do_stableupdate, do_oldstableupdate): move files to NEW for {old,}stable-proposed-updates world-readable (Closes: #368056) --- diff --git a/ChangeLog b/ChangeLog index d099e0c0..e63d3ce0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-30 Philipp Kern + + * 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 * config/debian/apt.conf: Lets generate experimental content diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 0e6b852e..690c1c11 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -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;