in reply to Installing modules to a remote system (of same platform)...possible? Yes, but...
(Of course you might be able to use ppm directly inside your script, but I don't know if you can integrate calls to it into a script like you can with CPAN.)#!perl -w use strict; $|++; print "Content-type: text/plain\n\n"; print `ppm install Some::Module`;
ppm has to have some option to let you install things to specified rather than the default directories (which would require Administrator access), and a switch to run non-interactively..
This is just a crutch, but at least it works.Makeshifts last the longest.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Installing modules to a remote system (of same platform)...possible? Yes, but...
by Kanji (Parson) on Jun 18, 2002 at 10:55 UTC | |
by S_Shrum (Pilgrim) on Jun 19, 2002 at 05:15 UTC | |
by S_Shrum (Pilgrim) on Jun 19, 2002 at 06:22 UTC |