Class: VagrantPlugins::Invade::InvadeModule::Provision::PuppetAgent
- Inherits:
-
InvadeModule
- Object
- InvadeModule
- VagrantPlugins::Invade::InvadeModule::Provision::PuppetAgent
- Defined in:
- lib/vagrant-invade/module/provision/puppet_agent/puppet_agent.rb
Instance Attribute Summary collapse
-
#machine_name ⇒ Object
Returns the value of attribute machine_name.
-
#puppet_agent_data ⇒ Object
Returns the value of attribute puppet_agent_data.
-
#result ⇒ Object
readonly
Returns the value of attribute result.
Instance Method Summary collapse
- #build ⇒ Object
-
#initialize(machine_name, puppet_agent_data, result: nil) ⇒ PuppetAgent
constructor
A new instance of PuppetAgent.
Methods inherited from InvadeModule
Constructor Details
#initialize(machine_name, puppet_agent_data, result: nil) ⇒ PuppetAgent
Returns a new instance of PuppetAgent.
11 12 13 14 15 |
# File 'lib/vagrant-invade/module/provision/puppet_agent/puppet_agent.rb', line 11 def initialize(machine_name, puppet_agent_data, result: nil) @machine_name = machine_name @puppet_agent_data = puppet_agent_data @result = result end |
Instance Attribute Details
#machine_name ⇒ Object
Returns the value of attribute machine_name.
9 10 11 |
# File 'lib/vagrant-invade/module/provision/puppet_agent/puppet_agent.rb', line 9 def machine_name @machine_name end |
#puppet_agent_data ⇒ Object
Returns the value of attribute puppet_agent_data.
9 10 11 |
# File 'lib/vagrant-invade/module/provision/puppet_agent/puppet_agent.rb', line 9 def puppet_agent_data @puppet_agent_data end |
#result ⇒ Object (readonly)
Returns the value of attribute result.
8 9 10 |
# File 'lib/vagrant-invade/module/provision/puppet_agent/puppet_agent.rb', line 8 def result @result end |
Instance Method Details
#build ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/vagrant-invade/module/provision/puppet_agent/puppet_agent.rb', line 17 def build b = binding begin # Get machine name machine_name = @machine_name # Values for provider puppet_agent section puppet_server = @puppet_agent_data['puppet_server'] puppet_node = @puppet_agent_data['puppet_node'] client_cert_path = @puppet_agent_data['client_cert_path'] client_private_key_path = @puppet_agent_data['client_private_key_path'] facter = @puppet_agent_data['facter'] = @puppet_agent_data['options'] eruby = Erubis::Eruby.new(File.read(self.get_template_path(__FILE__))) @result = eruby.result b rescue TypeError, SyntaxError, SystemCallError => e raise(e) end end |