We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
first time using this module on a fresh install I get:
Error: /usr/bin/env: /usr/local/bin/perlbrew: No such file or directory
Running puppet again everything works. Which means it's a dependency order issue.
exec { 'perlbrew_init': command => "/bin/sh -c 'umask 022; /usr/bin/env PERLBREW_ROOT=${perlbrew::params::perlbrew_root} ${perlbrew::params::perlbrew_bin} init'", creates => "${perlbrew::params::perlbrew_root}/perls", user => 'perlbrew', group => 'perlbrew', require => [ Group['perlbrew'], User['perlbrew'] ], }
The require should also have
File[$perlbrew::params::perlbrew_bin]
as part of the array. Puppet is pretty dumb sometimes. To reproduce:
node 'mah.cool.host' { class {'perlbrew':} perlbrew::build {"5.18.2": version => "5.18.2", } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
first time using this module on a fresh install I get:
Running puppet again everything works. Which means it's a dependency order issue.
The require should also have
as part of the array. Puppet is pretty dumb sometimes. To reproduce:
The text was updated successfully, but these errors were encountered: