Cookbook A provides LWRP, which I would like to expand with LWRP or HWRP in cookbook B, so that I can do something like the following, where it provider_bwill use the existing code / resources in provider_aand accept additional attributes that it could use for your own actions:
provider_a "A" do
attr_from_a :value
end
provider_b "B" do
attr_from_a :value
attr_from_b :value
end
Is this possible, and still possible, if I want to avoid editing cookbook A?
source
share