Sha256: 6b2014018bb941d9770813c2e1b27f037c3bf986f4ee53d66b652afb594d2657

Contents?: true

Size: 1.3 KB

Versions: 19

Compression:

Stored size: 1.3 KB

Contents

=begin rdoc
== Variable

Describes a variable to use in a template. One of the powerful hidden features behind puppet is that you can use templating for your templates

== Usage

  has_variable(:name => '...') do
    # More options. 
    # This block is optional
  end

== Options

* <tt>name</tt> The name of the variable to use in the template
* <tt>value</tt> The value of the variable in the template

To use these variables, in your Erb template, reference them like so
  
  name: <%= variablename %>

== Examples

  has_variable(:name => "name", :value => "#{cloud.name}")
=end
module PoolParty
  module Resources
    
    class Variable < Resource
      
      default_options(
        :name => nil, 
        :value => nil
      )
      
      def initialize(k, v=nil, exists=true)
        case k
        when Hash
          super
        else
          if value.is_a?(Hash)
            super(v.merge(:name => k))
          else
            super({:name => k, :value => v})
          end
        end
      end
      
      # Chef uses separate files for variables, so we'll have to open the variable file 
      # and set the variable there
      def print_to_chef
        # Variable
        # TODO: Variable => <%= name %>
        # "poolparty[:#{name}] = #{value}"
        :no_print
      end
      
    end
    
  end
end

Version data entries

19 entries across 19 versions & 3 rubygems

Version Path
auser-poolparty-1.3.10 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.11 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.12 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.13 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.14 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.15 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.16 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.17 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.6 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.7 lib/poolparty/resources/variable.rb
auser-poolparty-1.3.8 lib/poolparty/resources/variable.rb
fairchild-poolparty-1.3.17 lib/poolparty/resources/variable.rb
fairchild-poolparty-1.3.5 lib/poolparty/resources/variable.rb
poolparty-1.3.15 lib/poolparty/resources/variable.rb
poolparty-1.3.14 lib/poolparty/resources/variable.rb
poolparty-1.3.13 lib/poolparty/resources/variable.rb
poolparty-1.3.8 lib/poolparty/resources/variable.rb
poolparty-1.3.7 lib/poolparty/resources/variable.rb
poolparty-1.3.6 lib/poolparty/resources/variable.rb