[chef] Re: Re: Best practices for modifying standard cookbooks


Chronological Thread 
  • From: Bryan Berry < >
  • To:
  • Subject: [chef] Re: Re: Best practices for modifying standard cookbooks
  • Date: Fri, 23 Nov 2012 22:26:20 +0100

thanks for mentioning rewind AJ!

w/ rewind u can do it like this

rewind "template[name_of_template]" do
    variables(:some_param => "new_value")
end

same thing as AJ describes just pretty


On Fri, Nov 23, 2012 at 9:53 PM, AJ Christensen < " target="_blank"> > wrote:
You can re-open resources during compile phase. Bryan W. Berry has released a gem that adds some syntactic sugar to the Recipe [0]

```
thing_to_edit = resources(:template => "name_of_template")
thing_to_edit.cookbook_name "another_cookbook"
thing_to_edit.variables thing_to_edit.variables.merge(:another_param => "some val")
```


On 24 November 2012 09:47, Leo Dirac (SR) < " target="_blank"> > wrote:
I'm getting ready to update to the new version of the application cookbook, and I'm seeking advice for carrying forwards a custom modification I made.

My issue comes from the application cookbook always doing a "shallow clone" of a git repo (source), which on my systems sometimes causes a failure to deploy.  Last time I fixed this by just changing that line of code from "true" to "false" in my local cookbook.  It's expedient, but doesn't seem like a best practice, and forces me to re-do this kind of change every time I upgrade.

How do others manage customizations to shared cookbooks?

Thanks!






Archive powered by MHonArc 2.6.16.

§