Skip to content

Commit

Permalink
Remove default value on phpfarm_compile resource
Browse files Browse the repository at this point in the history
Looks like in production we are hitting a Chef bug that makes it
ignore named attribute and always use default value instead. This magically
makes the issue go away. Per discussion with Loïc.
  • Loading branch information
michaelklishin committed Nov 12, 2011
1 parent 9cb4f79 commit fcf3f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vagrant_base/phpfarm/resources/compile.rb
@@ -1,5 +1,5 @@
actions :create, :delete

attribute :version, :default => "5.3.8", :name_attribute => true
attribute :version, :name_attribute => true
attribute :owner, :regex => Chef::Config[:user_valid_regex]
attribute :group, :regex => Chef::Config[:group_valid_regex]

0 comments on commit fcf3f95

Please sign in to comment.