Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Module Installation Verifier

by Limbic~Region (Chancellor)
on Mar 19, 2004 at 18:42 UTC ( [id://338107]=CUFP: print w/replies, xml ) Need Help??

This little snippet allows you to verify that all the modules that the .packlist files say are installed on your system are indeed installed properly. If you need to remove some modules so that they can properly be re-installed, the example in ExtUtils::Packlist shows how to do that
#!/usr/bin/perl use strict; use warnings; use ExtUtils::Installed; my $packlist = ExtUtils::Installed->new; for my $module ( $packlist->modules ) { my @missing = $packlist->validate( $module ); if ( @missing ) { print "$module is b0rked - missing file(s)\n"; print "\t$_\n" for @missing; } }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://338107]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-03-19 05:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found