melezhik / cookbooks

perl chef cookbooks
https://github.com/melezhik/cookbooks
21 stars 27 forks source link

Add support for installing Bundle::LWP #27

Closed funzoneq closed 8 years ago

funzoneq commented 9 years ago

Now the chef module can also install bundles via CPAN.

melezhik commented 9 years ago

Hi @funzoneq Thanks for contribution. Just one question. Why don't you want to use install_typefor this? Like:

cpan_client 'Bundle::LWP' do
    user 'root'
    group 'root'
    dry_run true 
    install_type 'bundle'
    action 'install'
end
funzoneq commented 8 years ago

@melezhik I've updated the PR to include a 'bundle' install_type.

melezhik commented 8 years ago

Hi Arnoud ! Released at 0.0.33 - https://supermarket.chef.io/cookbooks/cpan - Thanks alot for contribution