Just ran nginx :: source recipe on my stray field and I have very unusual behavior.
When I include a recipe from Vagrantfile (as shown below), everything works like a charm,
chef.add_recipe ("Project :: Nginx")
chef.add_recipe ("Nginx :: source")
(project :: nginx recipe is very simple. Using it to override the default attributes for the nginx cookbook)
but if I include the recipe at the very end of the project :: nginx (mentioned above), everything will fall apart:
node.default['nginx']['server_names_hash_bucket_size'] = 128 include_recipe "nginx::source"
Until now, I did not know what the difference in behavior is between these two challenges. Does anyone know what the difference is?
source share