Need help with notifies attribute in LWRP DSL

@coderanger is right. It looks like your LWRP is wraping a package and you want to basically forward the notifies of the wrapped package. You are getting the wrong number of arguments error because new_resource.notifies looks like a simple attribute buts its actually a method that takes 2 - 3 arguments. I can totally see how this looks like the right thing to do but its actually unnecessary given the way `notifies works. Upon a succesful convergence of your LWRP resource, it wil fire the notifies it was given. So you dont need any notifies associated with the inner package.

Got it! I knew it was ME. Once I removed the notifies new_resource.notifies it worked! Thanks!!!