Issue #15074 has been reported by Dan Bode.
----------------------------------------
Bug #15074: parent providers do not work with pluginsync
https://projects.puppetlabs.com/issues/15074
Author: Dan Bode
Status: Unreviewed
Priority: Normal
Assignee:
Category:
Target version:
Affected Puppet version:
Keywords:
Branch:
Assume a module with the following providers:
<some_module>/lib/puppet/provider/cs_order/crm.rb
<some_module>/lib/puppet/provider/corosync.rb
Where the first provider specifies a parent provider:
Puppet::Type.type(:cs_order).provide(:crm, :parent =>
Puppet::Provider::Corosync) do
and the provider requires its parent:
require 'puppet/provider/corosync'
This will fail with pluginsync:
no such file to load -- puppet/provider/corosync
To get around this, manual adding the lib directory to the LOAD_PATH from the
provider (which is kind of hacky):
$LOAD_PATH.push(File.join(File.dirname(__FILE__), '..', '..', '..'))
--
You have received this notification because you have either subscribed to it,
or are involved in it.
To change your notification preferences, please click here:
http://projects.puppetlabs.com/my/account
--
You received this message because you are subscribed to the Google Groups
"Puppet Bugs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/puppet-bugs?hl=en.