http://www.perlmonks.org?node_id=1014316


in reply to Re: Ensuring cpan modules installed on all computers in a network are consistent
in thread Ensuring cpan modules installed on all computers in a network are consistent

Would this be a case of running a root script which secure shells to each computer on the network and yum install or apt-get install the required library. I assume this would save the downloaded package in /usr/lib and the perl module would then be available for all users on that computer?
  • Comment on Re^2: Ensuring cpan modules installed on all computers in a network are consistent

Replies are listed 'Best First'.
Re^3: Ensuring cpan modules installed on all computers in a network are consistent
by mhearse (Chaplain) on Jan 21, 2013 at 18:37 UTC
    You could do that. The way I've done is via puppet and cfengine. Also via func and ansible. Ducks for mentioning python apps on a perl pub These methods require some work to get setup. SSL or SSH if you're the paranoid type (want to sleep soundly through the night).

    Create your rpm and then deploy it:

    for i in $(cat serverlist) do ssh "$i" "sudo yum -y install your.rpm" done
          The way I've done is via puppet and cfengine.

      puppet... yay! cfengine... boo! :-D


      Peter L. Berghold -- Unix Professional
      Peter -at- Berghold -dot- Net; AOL IM redcowdawg Yahoo IM: blue_cowdawg
      Assuming your using CentOS. Lets also assume a perl module rpm isn't available through the main or extras yum repo. BE VARY CAREFUL ABOUT DOWNLOADING RPMS FROM THE OPEN INTERNET. As you really can't trust what's in them. When in doubt, build your own rpm.

      It would be akin to downloading a exe from gnutella. Which is most surely a trojan.