You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2005/11/10 03:37:33 UTC

svn commit: r332207 - /spamassassin/trunk/masses/rule-qa/automc/gen_info_xml

Author: jm
Date: Wed Nov  9 18:37:32 2005
New Revision: 332207

URL: http://svn.apache.org/viewcvs?rev=332207&view=rev
Log:
use world-writeable modes

Modified:
    spamassassin/trunk/masses/rule-qa/automc/gen_info_xml

Modified: spamassassin/trunk/masses/rule-qa/automc/gen_info_xml
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/masses/rule-qa/automc/gen_info_xml?rev=332207&r1=332206&r2=332207&view=diff
==============================================================================
--- spamassassin/trunk/masses/rule-qa/automc/gen_info_xml (original)
+++ spamassassin/trunk/masses/rule-qa/automc/gen_info_xml Wed Nov  9 18:37:32 2005
@@ -37,6 +37,7 @@
   open (OUT, ">$drdir/fastinfo.xml") or die "cannot write $drdir/fastinfo.xml";
   print OUT $fastinfo;
   close OUT or die "failed to write to $drdir/fastinfo.xml";
+  chmod 0666, "$drdir/fastinfo.xml" or warn "failed to chmod $drdir/fastinfo.xml";
 
   # this one is only built if it doesn't already exist, because
   # it's quite expensive to build
@@ -50,6 +51,7 @@
   open (OUT, ">$drdir/info.xml") or die "cannot write $drdir/info.xml";
   print OUT $info;
   close OUT or die "failed to write to $drdir/info.xml";
+  chmod 0666, "$drdir/info.xml" or warn "failed to chmod $drdir/info.xml";
 }
 
 sub get_info {