-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
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
Let Librarian Puppet work without connectivity to a Forge #325
Comments
It's probably because you have a dependency in your metadata.json in the ntp module which is missing in your modulepath and librarian puppet tries to resolve the dependency from forge. |
Thank you for the reply. #!/usr/bin/env ruby mod 'ntp', On Sep 25, 2015 7:58 AM, "Fredrik Lindgren" notifications@github.com
|
Check inside your ntp module for a metadata.json file and if there's a dependency for another module there. |
Hi there. I would also like this feature. I would like to be able to use a Forge in some cases, but disable forge dependency resolution in other cases. I took a look at the code, but didn't see a straightforward method for making this happen. Pointers would be appreciated. |
This update adds support for using librarian puppet without a forge. Setting the LIBRARIAN_PUPPET_USE_FORGE binary option in one of the configuration files will prevent the utility from reaching out to a forge for dependency resolution. Fixes rodjek#325
This update adds support for using librarian puppet without a forge. Setting the LIBRARIAN_PUPPET_USE_FORGE binary option in one of the configuration files will prevent the utility from reaching out to a forge for dependency resolution. Fixes rodjek#325
I'm attempting to use librarian-puppet in an environment that cannot reach puppet forge. (I have no need of an internal forge.)
What I would like to do is just have librarian-puppet interact with git and not forge at all. Is this doable via config currently? It looks like LP is blowing up trying to resolve the module when I do an install, even though I have specified the module as a git one:
mod 'ntp',
:git => "git://bla.bla.bla//puppet/ntp.git"
The text was updated successfully, but these errors were encountered: