in reply to Best way to package perl modules for deployment

If they are Red Hat systems, you should consider making RPMs. It's easy and works well. In general though, you can just move modules around with tar as long as the machine you're moving them to is set up the same. If you're confused about what goes where, you can install them in a private directory, move that whole directory with tar (or zip or whatever), and add it to @INC on the target machines.
  • Comment on Re: Best way to package perl modules for deployment

Replies are listed 'Best First'.
Re: Re: Best way to package perl modules for deployment
by rak (Novice) on Apr 29, 2003 at 08:47 UTC
    Thanks for everyone's help, I'll be taking the tar approach initially, and then moving towards using an RPM as soon as possible.