Cookbook A provides a LWRP that I would like to extend with a LWRP or HWRP in cookbook B, so that I could do something like the following, where provider_b
would use the existing code/resources in provider_a
and accept additional attributes it could use for it's 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 is it still possible if I want to avoid editing cookbook A?