Mason permissions problems

Has anyone else seen this before:

error: Couldn’t create object file /opt/rt-3.4.1/var/mason_data/obj/standard/index.html

It seems that the Mason cache directories are being created with 0664
permissions instead of something sensible like 0775. I’ve looked for
a umask setting all over but haven’t been able to find one. Any ideas?
I can write a script that autocreates those directories every hour based
on the existing directory structure, but that’s a horrible hack.

thanks,

-jkl

Has anyone else seen this before:

error: Couldn’t create object file /opt/rt-3.4.1/var/mason_data/obj/standard/index.html

It seems that the Mason cache directories are being created with 0664
permissions instead of something sensible like 0775. I’ve looked for
a umask setting all over but haven’t been able to find one. Any ideas?
I can write a script that autocreates those directories every hour based
on the existing directory structure, but that’s a horrible hack.

Ugh, hate it when I fix a problem right after I ask about it. For the
archives, the solution was to put:

umask(0022);

in /opt/rt3/share/html/autoheader

right after <%INIT%>

-jkl