What is a quick way to run a single script to auto

2019-04-08 00:29发布

I inherited a project which is supposed to be able to be deployed to other servers. This project has a number of simple module dependencies which however might not be present on all target machines.

As such I'd like to be able to run a single command line script that checks which Perl modules are installed and tries to automatically install missing ones via CPAN.

Since this should be very basic (i.e. needing to install stuff to run the module installer would defeat the point) said script should only use Perl 5.8.8 core modules.

Does something like that exist already or would i need to write it myself?

2条回答
做个烂人
2楼-- · 2019-04-08 00:56

Use Module::Install, it will be bundled with your module/program. You can use "auto_install" command to automatically install dependencies.

查看更多
smile是对你的礼貌
3楼-- · 2019-04-08 01:09

Creating a Bundle package is one possible answer.

You can then look at something like CPAN::Shell (see CPAN module) to automate the process.

/I3az/

Update re: brian's comment about Task:: - Here are some pertinent links:

查看更多
登录 后发表回答