in reply to RFC: auditing cpan installs

I think a better method of doing what you want would be to download the module, untar, then run:
$ perl Makefile.PL $ make $ make test
If that works without error you can make install as root.

Replies are listed 'Best First'.
Re^2: RFC: auditing cpan installs
by thunders (Priest) on Apr 30, 2009 at 15:23 UTC
    Of course, this means you'd need to manually resolve dependencies, while CPAN will do that for you. But this is the best way I know to audit exactly what's happening at each step.