opscode (owner)

Revisions

gist: 183969 Download_button fork
public
Public Clone URL: git://gist.github.com/183969.git
Embed All Files: show embed
attributes/packages.rb #
1
2
default[:packages][:dist_only] = false
 
libraries/packages.rb #
1
2
3
4
5
6
7
class Chef
  class Recipe
    def dist_only?
      @node[:packages][:dist_only]
    end
  end
end
Text only #
1
set.test[:packages] = "I'm using distro packages" if dist_only?