How do I install a Perl module with specific permissions -


i'm trying multiple people update installed perl using group permissions in unix , usual makefile created out of exutils::makemaker

on plain install, makemaker ignores umask , perm_rw variable in makefile , creates installed file permissions

24 -r--r--r--    1 uid    group        23536 may 01 15:23 ftp.pm 

this plainly wrong purpose. how makemaker install files following permissions:

24 -rw-rw-r--    1 uid    group        23536 may 01 15:23 ftp.pm 

so they're usable members of group?

how makemaker install files [...] they're usable members of group?

the permissions said module has sufficient members of group group use it. (as can see, group permissions same user permissions.) read permission needed on modules. you've accomplished stated goal.


Comments