So, what is Inplace doing and how and why is it changing permissions? And how can I stop it?
Investigate.
http://search.cpan.org/src/CHIPT/File-Inplace-0.20/lib/File/Inplace.pm
No chmod, no umask, uses File::Copy, File::Temp
http://search.cpan.org/src/NWCLARK/perl-5.8.8/lib/File/Copy.pm
No chmod, no umask
http://search.cpan.org/src/NWCLARK/perl-5.8.8/lib/File/Temp.pm
Bingo
# Internal routine to force a temp file to be writable after
# it is created so that we can unlink it. Windows seems to occassional
+ly
# force a file to be readonly when written to certain temp locations
sub _force_writable {
my $file = shift;
my $umask = umask();
umask(066);
chmod 0600, $file;
umask($umask) if defined $umask;
}
With a umask of 066 only the creator of the file will be able to read or write to the file.
File::Inplace needs to account for this behaviour.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.