corl 0.4.29 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (230) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -3
  3. data/Gemfile.lock +16 -13
  4. data/VERSION +1 -1
  5. data/bin/corl +21 -1
  6. data/bootstrap/os/ubuntu/00_base.sh +2 -2
  7. data/bootstrap/os/ubuntu/06_puppet.sh +7 -12
  8. data/bootstrap/os/ubuntu/09_nucleon.sh +1 -1
  9. data/bootstrap/os/ubuntu/10_corl.sh +1 -4
  10. data/corl.gemspec +193 -40
  11. data/lib/CORL/builder/identity.rb +68 -0
  12. data/lib/CORL/builder/package.rb +75 -0
  13. data/lib/CORL/configuration/file.rb +5 -5
  14. data/lib/CORL/machine/{aws.rb → AWS.rb} +2 -2
  15. data/lib/CORL/machine/physical.rb +1 -1
  16. data/lib/CORL/machine/rackspace.rb +1 -1
  17. data/lib/CORL/machine/vagrant.rb +2 -2
  18. data/lib/CORL/network/{default.rb → CORL.rb} +1 -1
  19. data/lib/CORL/node/{aws.rb → AWS.rb} +1 -1
  20. data/lib/CORL/node/local.rb +1 -1
  21. data/lib/CORL/node/vagrant.rb +7 -2
  22. data/lib/CORL/provisioner/puppetnode.rb +139 -131
  23. data/lib/core/build.rb +112 -0
  24. data/lib/core/facade.rb +48 -8
  25. data/lib/core/mixin/builder.rb +158 -0
  26. data/lib/core/mixin/lookup.rb +51 -20
  27. data/lib/core/mixin/machine/ssh.rb +16 -4
  28. data/lib/core/plugin/builder.rb +49 -0
  29. data/lib/core/plugin/{action.rb → cloud_action.rb} +22 -16
  30. data/lib/core/plugin/configuration.rb +9 -3
  31. data/lib/core/plugin/fog_machine.rb +3 -3
  32. data/lib/core/plugin/fog_node.rb +1 -1
  33. data/lib/core/plugin/machine.rb +2 -2
  34. data/lib/core/plugin/network.rb +39 -10
  35. data/lib/core/plugin/node.rb +95 -35
  36. data/lib/core/plugin/provisioner.rb +133 -113
  37. data/lib/core/util/puppet/resource.rb +1 -1
  38. data/lib/core/vagrant/actions/delete_cache.rb +7 -1
  39. data/lib/core/vagrant/commands/launcher.rb +2 -2
  40. data/lib/core/vagrant/config.rb +29 -2
  41. data/lib/corl.rb +9 -8
  42. data/lib/facter/corl_config_ready.rb +1 -1
  43. data/lib/facter/vagrant_exists.rb +1 -1
  44. data/lib/nucleon/action/cloud/create.rb +51 -0
  45. data/lib/nucleon/action/cloud/hiera.rb +61 -0
  46. data/lib/{CORL/action → nucleon/action/cloud}/images.rb +11 -2
  47. data/lib/nucleon/action/cloud/inspect.rb +47 -0
  48. data/lib/{CORL/action → nucleon/action/cloud}/machines.rb +11 -2
  49. data/lib/{CORL/action → nucleon/action/cloud}/regions.rb +11 -2
  50. data/lib/{CORL/action → nucleon/action/cloud}/vagrantfile.rb +11 -2
  51. data/lib/{CORL/action/ip.rb → nucleon/action/node/IP.rb} +11 -2
  52. data/lib/{CORL/action/ssh.rb → nucleon/action/node/SSH.rb} +15 -7
  53. data/lib/{CORL/action → nucleon/action/node}/authorize.rb +11 -2
  54. data/lib/{CORL/action → nucleon/action/node}/bootstrap.rb +13 -4
  55. data/lib/nucleon/action/node/build.rb +49 -0
  56. data/lib/{CORL/action → nucleon/action/node}/destroy.rb +14 -5
  57. data/lib/{CORL/action → nucleon/action/node}/exec.rb +11 -2
  58. data/lib/{CORL/action → nucleon/action/node}/facts.rb +12 -3
  59. data/lib/{CORL/action → nucleon/action/node}/image.rb +13 -4
  60. data/lib/nucleon/action/node/keypair.rb +85 -0
  61. data/lib/{CORL/action → nucleon/action/node}/lookup.rb +13 -4
  62. data/lib/{CORL/action → nucleon/action/node}/provision.rb +30 -8
  63. data/lib/{CORL/action → nucleon/action/node}/reboot.rb +13 -4
  64. data/lib/{CORL/action → nucleon/action/node}/revoke.rb +11 -2
  65. data/lib/{CORL/action → nucleon/action/node}/seed.rb +13 -4
  66. data/lib/{CORL/action → nucleon/action/node}/spawn.rb +19 -9
  67. data/lib/{CORL/action → nucleon/action/node}/start.rb +13 -4
  68. data/lib/{CORL/action → nucleon/action/node}/stop.rb +13 -4
  69. data/lib/{CORL → nucleon}/event/puppet.rb +2 -2
  70. data/lib/{CORL → nucleon}/template/environment.rb +2 -2
  71. data/lib/puppet/indirector/corl.rb +7 -4
  72. data/lib/puppet/parser/functions/corl_resources.rb +1 -0
  73. data/lib/puppet/parser/functions/global_array.rb +2 -1
  74. data/lib/puppet/parser/functions/global_hash.rb +2 -1
  75. data/lib/puppet/parser/functions/global_param.rb +2 -1
  76. data/lib/puppet/parser/functions/module_array.rb +2 -1
  77. data/lib/puppet/parser/functions/module_hash.rb +3 -2
  78. data/lib/puppet/parser/functions/module_param.rb +3 -2
  79. data/lib/puppet/parser/functions/render.rb +1 -0
  80. data/locales/en.yml +80 -0
  81. data/rdoc/site/0.4.29/CORL/Action/Authorize.html +485 -0
  82. data/rdoc/site/0.4.29/CORL/Action/Bootstrap.html +546 -0
  83. data/rdoc/site/0.4.29/CORL/Action/Build.html +396 -0
  84. data/rdoc/site/0.4.29/CORL/Action/Destroy.html +515 -0
  85. data/rdoc/site/0.4.29/CORL/Action/Exec.html +472 -0
  86. data/rdoc/site/0.4.29/CORL/Action/Facts.html +398 -0
  87. data/rdoc/site/0.4.29/CORL/Action/Image.html +515 -0
  88. data/rdoc/site/0.4.29/CORL/Action/Images.html +514 -0
  89. data/rdoc/site/0.4.29/CORL/Action/Ip.html +395 -0
  90. data/rdoc/site/0.4.29/CORL/Action/Keypair.html +494 -0
  91. data/rdoc/site/0.4.29/CORL/Action/Lookup.html +474 -0
  92. data/rdoc/site/0.4.29/CORL/Action/Machines.html +509 -0
  93. data/rdoc/site/0.4.29/CORL/Action/Provision.html +456 -0
  94. data/rdoc/site/0.4.29/CORL/Action/Reboot.html +515 -0
  95. data/rdoc/site/0.4.29/CORL/Action/Regions.html +509 -0
  96. data/rdoc/site/0.4.29/CORL/Action/Revoke.html +483 -0
  97. data/rdoc/site/0.4.29/CORL/Action/Seed.html +544 -0
  98. data/rdoc/site/0.4.29/CORL/Action/Spawn.html +616 -0
  99. data/rdoc/site/0.4.29/CORL/Action/Ssh.html +526 -0
  100. data/rdoc/site/0.4.29/CORL/Action/Start.html +515 -0
  101. data/rdoc/site/0.4.29/CORL/Action/Stop.html +515 -0
  102. data/rdoc/site/0.4.29/CORL/Action/Vagrantfile.html +457 -0
  103. data/rdoc/site/0.4.29/CORL/Action.html +360 -0
  104. data/rdoc/site/0.4.29/CORL/Configuration/File.html +1128 -0
  105. data/rdoc/site/0.4.29/CORL/Configuration.html +339 -0
  106. data/rdoc/site/0.4.29/CORL/Errors.html +339 -0
  107. data/rdoc/site/0.4.29/CORL/Event/Puppet.html +673 -0
  108. data/rdoc/site/0.4.29/CORL/Event.html +339 -0
  109. data/rdoc/site/0.4.29/CORL/Facade.html +742 -0
  110. data/rdoc/site/0.4.29/CORL/Machine/Aws.html +733 -0
  111. data/rdoc/site/0.4.29/CORL/Machine/Fog.html +1269 -0
  112. data/rdoc/site/0.4.29/CORL/Machine/Physical.html +1039 -0
  113. data/rdoc/site/0.4.29/CORL/Machine/Rackspace.html +514 -0
  114. data/rdoc/site/0.4.29/CORL/Machine/Vagrant.html +1300 -0
  115. data/rdoc/site/0.4.29/CORL/Machine.html +343 -0
  116. data/rdoc/site/0.4.29/CORL/Mixin/Action/Keypair.html +572 -0
  117. data/rdoc/site/0.4.29/CORL/Mixin/Action.html +339 -0
  118. data/rdoc/site/0.4.29/CORL/Mixin/Lookup.html +954 -0
  119. data/rdoc/site/0.4.29/CORL/Mixin/Machine/SSH.html +643 -0
  120. data/rdoc/site/0.4.29/CORL/Mixin/Machine.html +339 -0
  121. data/rdoc/site/0.4.29/CORL/Mixin/Macro/NetworkSettings.html +464 -0
  122. data/rdoc/site/0.4.29/CORL/Mixin/Macro.html +339 -0
  123. data/rdoc/site/0.4.29/CORL/Mixin.html +342 -0
  124. data/rdoc/site/0.4.29/CORL/Network/Default.html +391 -0
  125. data/rdoc/site/0.4.29/CORL/Network.html +339 -0
  126. data/rdoc/site/0.4.29/CORL/Node/Aws.html +716 -0
  127. data/rdoc/site/0.4.29/CORL/Node/Fog.html +1192 -0
  128. data/rdoc/site/0.4.29/CORL/Node/Local.html +424 -0
  129. data/rdoc/site/0.4.29/CORL/Node/Rackspace.html +709 -0
  130. data/rdoc/site/0.4.29/CORL/Node/Vagrant.html +1451 -0
  131. data/rdoc/site/0.4.29/CORL/Node.html +343 -0
  132. data/rdoc/site/0.4.29/CORL/Plugin/CloudAction.html +810 -0
  133. data/rdoc/site/0.4.29/CORL/Plugin.html +339 -0
  134. data/rdoc/site/0.4.29/CORL/Provisioner/Puppetnode.html +1095 -0
  135. data/rdoc/site/0.4.29/CORL/Provisioner.html +339 -0
  136. data/rdoc/site/0.4.29/CORL/Template/Environment.html +528 -0
  137. data/rdoc/site/0.4.29/CORL/Template.html +339 -0
  138. data/rdoc/site/0.4.29/CORL/Util/Puppet/Resource.html +1038 -0
  139. data/rdoc/site/0.4.29/CORL/Util/Puppet/ResourceGroup.html +920 -0
  140. data/rdoc/site/0.4.29/CORL/Util/Puppet.html +1087 -0
  141. data/rdoc/site/0.4.29/CORL/Util.html +341 -0
  142. data/rdoc/site/0.4.29/CORL/Vagrant/Config.html +896 -0
  143. data/rdoc/site/0.4.29/CORL/Vagrant.html +418 -0
  144. data/rdoc/site/0.4.29/CORL.html +465 -0
  145. data/rdoc/site/0.4.29/Facter/Util/Loader.html +396 -0
  146. data/rdoc/site/0.4.29/Facter/Util.html +339 -0
  147. data/rdoc/site/0.4.29/Facter.html +339 -0
  148. data/rdoc/site/0.4.29/Fog/Compute/AWS/Server.html +423 -0
  149. data/rdoc/site/0.4.29/Fog/Compute/AWS.html +345 -0
  150. data/rdoc/site/0.4.29/Fog/Compute/RackspaceV2/Server.html +408 -0
  151. data/rdoc/site/0.4.29/Fog/Compute/RackspaceV2.html +345 -0
  152. data/rdoc/site/0.4.29/Fog/Compute.html +340 -0
  153. data/rdoc/site/0.4.29/Fog.html +340 -0
  154. data/rdoc/site/0.4.29/Hiera/Backend.html +422 -0
  155. data/rdoc/site/0.4.29/Hiera/Corl_logger.html +449 -0
  156. data/rdoc/site/0.4.29/Hiera.html +346 -0
  157. data/rdoc/site/0.4.29/Nucleon/Config.html +357 -0
  158. data/rdoc/site/0.4.29/Nucleon/Plugin/Base.html +345 -0
  159. data/rdoc/site/0.4.29/Nucleon/Plugin/Configuration.html +1213 -0
  160. data/rdoc/site/0.4.29/Nucleon/Plugin/Machine.html +1279 -0
  161. data/rdoc/site/0.4.29/Nucleon/Plugin/Network.html +1425 -0
  162. data/rdoc/site/0.4.29/Nucleon/Plugin/Node.html +3715 -0
  163. data/rdoc/site/0.4.29/Nucleon/Plugin/Provisioner.html +1297 -0
  164. data/rdoc/site/0.4.29/Nucleon/Plugin.html +344 -0
  165. data/rdoc/site/0.4.29/Nucleon.html +344 -0
  166. data/rdoc/site/0.4.29/Object.html +358 -0
  167. data/rdoc/site/0.4.29/Puppet/DataBinding/Corl.html +345 -0
  168. data/rdoc/site/0.4.29/Puppet/DataBinding.html +338 -0
  169. data/rdoc/site/0.4.29/Puppet/Indirector/Corl.html +454 -0
  170. data/rdoc/site/0.4.29/Puppet/Indirector.html +338 -0
  171. data/rdoc/site/0.4.29/Puppet/Parser/Functions.html +480 -0
  172. data/rdoc/site/0.4.29/Puppet/Parser.html +338 -0
  173. data/rdoc/site/0.4.29/Puppet.html +338 -0
  174. data/rdoc/site/0.4.29/README_rdoc.html +340 -0
  175. data/rdoc/site/0.4.29/Vagrant/Config/Loader.html +399 -0
  176. data/rdoc/site/0.4.29/Vagrant/Config.html +339 -0
  177. data/rdoc/site/0.4.29/Vagrant/Vagrantfile.html +392 -0
  178. data/rdoc/site/0.4.29/Vagrant.html +346 -0
  179. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action/DeleteCache.html +396 -0
  180. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action/InitKeys.html +408 -0
  181. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action/LinkNetwork.html +406 -0
  182. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action.html +341 -0
  183. data/rdoc/site/0.4.29/VagrantPlugins/CORL/BaseAction.html +491 -0
  184. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Command/Launcher.html +533 -0
  185. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Command.html +339 -0
  186. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Config/CORL.html +732 -0
  187. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Config.html +339 -0
  188. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Plugin.html +345 -0
  189. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Provisioner/CORL.html +536 -0
  190. data/rdoc/site/0.4.29/VagrantPlugins/CORL/Provisioner.html +339 -0
  191. data/rdoc/site/0.4.29/VagrantPlugins/CORL.html +346 -0
  192. data/rdoc/site/0.4.29/VagrantPlugins.html +346 -0
  193. data/rdoc/site/0.4.29/created.rid +96 -0
  194. data/rdoc/site/0.4.29/images/add.png +0 -0
  195. data/rdoc/site/0.4.29/images/brick.png +0 -0
  196. data/rdoc/site/0.4.29/images/brick_link.png +0 -0
  197. data/rdoc/site/0.4.29/images/bug.png +0 -0
  198. data/rdoc/site/0.4.29/images/bullet_black.png +0 -0
  199. data/rdoc/site/0.4.29/images/bullet_toggle_minus.png +0 -0
  200. data/rdoc/site/0.4.29/images/bullet_toggle_plus.png +0 -0
  201. data/rdoc/site/0.4.29/images/date.png +0 -0
  202. data/rdoc/site/0.4.29/images/delete.png +0 -0
  203. data/rdoc/site/0.4.29/images/find.png +0 -0
  204. data/rdoc/site/0.4.29/images/loadingAnimation.gif +0 -0
  205. data/rdoc/site/0.4.29/images/macFFBgHack.png +0 -0
  206. data/rdoc/site/0.4.29/images/package.png +0 -0
  207. data/rdoc/site/0.4.29/images/page_green.png +0 -0
  208. data/rdoc/site/0.4.29/images/page_white_text.png +0 -0
  209. data/rdoc/site/0.4.29/images/page_white_width.png +0 -0
  210. data/rdoc/site/0.4.29/images/plugin.png +0 -0
  211. data/rdoc/site/0.4.29/images/ruby.png +0 -0
  212. data/rdoc/site/0.4.29/images/tag_blue.png +0 -0
  213. data/rdoc/site/0.4.29/images/tag_green.png +0 -0
  214. data/rdoc/site/0.4.29/images/transparent.png +0 -0
  215. data/rdoc/site/0.4.29/images/wrench.png +0 -0
  216. data/rdoc/site/0.4.29/images/wrench_orange.png +0 -0
  217. data/rdoc/site/0.4.29/images/zoom.png +0 -0
  218. data/rdoc/site/0.4.29/index.html +339 -0
  219. data/rdoc/site/0.4.29/js/darkfish.js +155 -0
  220. data/rdoc/site/0.4.29/js/jquery.js +18 -0
  221. data/rdoc/site/0.4.29/js/navigation.js +142 -0
  222. data/rdoc/site/0.4.29/js/search.js +94 -0
  223. data/rdoc/site/0.4.29/js/search_index.js +1 -0
  224. data/rdoc/site/0.4.29/js/searcher.js +228 -0
  225. data/rdoc/site/0.4.29/rdoc.css +543 -0
  226. data/rdoc/site/0.4.29/table_of_contents.html +1561 -0
  227. metadata +192 -45
  228. data/lib/CORL/action/build.rb +0 -22
  229. data/lib/CORL/action/keypair.rb +0 -56
  230. data/lib/core/mod/facter_loader.rb +0 -15
@@ -0,0 +1 @@
1
+ var search_data = {"index":{"searchIndex":["corl","action","authorize","bootstrap","build","destroy","exec","facts","image","images","ip","keypair","lookup","machines","provision","reboot","regions","revoke","seed","spawn","ssh","start","stop","vagrantfile","configuration","file","errors","event","puppet","facade","machine","aws","fog","physical","rackspace","vagrant","mixin","action","keypair","lookup","machine","ssh","macro","networksettings","network","default","node","aws","fog","local","rackspace","vagrant","plugin","cloudaction","provisioner","puppetnode","template","environment","util","puppet","resource","resourcegroup","vagrant","config","facter","util","loader","fog","compute","aws","server","rackspacev2","server","hiera","backend","corl_logger","nucleon","config","plugin","base","configuration","machine","network","node","provisioner","object","puppet","databinding","corl","indirector","corl","parser","functions","vagrant","config","loader","vagrantfile","vagrantplugins","corl","action","deletecache","initkeys","linknetwork","baseaction","command","launcher","config","corl","plugin","provisioner","corl","version()","action()","add()","add()","add_class()","add_composite_resource()","add_definition()","add_node()","add_resource()","add_search_path()","api_key()","api_key=()","api_user()","api_user=()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","attach()","attach()","attach_data()","attach_files()","attach_keys()","auth_url()","auth_url=()","autoload()","autoload=()","autosave()","autosave=()","batch()","bootstrap()","bootstrap_script()","bootstrap_script()","bootstrap_script=()","bootstrap_script=()","build()","build()","build()","build()","build_directory()","build_directory()","build_info()","build_info()","build_info()","build_locations()","build_profiles()","build_time()","build_time()","build_time=()","build_time=()","cache()","cache()","call()","call()","call()","call()","can_persist?()","check()","clean()","clear()","clear_config_cache()","cli()","cli_capture()","cli_check()","close_ssh_session()","command()","command()","command()","command=()","compiler()","composite_resources()","composite_resources=()","compute()","compute=()","concatenate()","concatenate()","config_initialized?()","configuration()","configurations()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure_provisioner()","configure_shares()","configure_ssh()","configure_vagrant()","configure_vm()","connection_options()","connection_options=()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create_config()","create_config()","create_image()","create_image()","create_image()","create_image()","create_image()","create_image()","create_image()","create_image()","create_image()","create_machine()","created?()","created?()","created?()","created?()","custom_facts()","custom_facts=()","debug()","debug_lookup()","debug_resource()","default()","default=()","defaults()","delete()","delete_attachments()","delete_attachments()","delete_attachments()","delete_keys()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","directory()","directory()","directory()","directory=()","download()","download()","download()","download()","download()","download()","download()","each_module()","each_node_config()","element()","element=()","ensure_network()","ensure_node()","ensure_ready()","ensure_security_group()","env()","env()","exec()","exec()","exec()","exec()","exec()","exec()","exec()","exec_options()","exec_options()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute_remote()","extract_hostnames()","fact()","facts()","fetch_project()","filter_output()","filter_output()","finalize!()","find()","find_profiles()","gateway()","gateway=()","get_node()","group()","handle()","has_nodes?()","hiera()","hiera_configuration()","hiera_facts()","hiera_facts()","hiera_override_dir()","hiera_override_dir()","hiera_override_dir()","home()","home()","hostname()","hostname()","hostname()","id()","id()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","image()","image()","image()","image()","image=()","image_id()","image_id()","image_search_text()","image_search_text()","image_search_text()","image_search_text()","images()","images()","images()","import()","import()","import()","import()","include()","info()","info()","info=()","info=()","init_network()","init_node()","init_puppet()","init_server()","init_server()","init_server()","init_shares()","init_ssh()","init_ssh_session()","initialized?()","inspect()","key_config()","keypair()","keypair=()","keypair_clean()","keypair_config()","keypair_ignore()","keypair_name()","lib_path()","load()","load()","load()","load()","load()","load()","load()","load_dir()","load_network()","local?()","local?()","local_machine()","local_machine=()","local_node()","localize()","logger()","lookup()","lookup()","lookup()","lookup()","lookup()","lookup_array()","lookup_array()","lookup_config()","lookup_facts()","lookup_hash()","lookup_hash()","machine()","machine=()","machine_config()","machine_config()","machine_config()","machine_config()","machine_config()","machine_type()","machine_type()","machine_type()","machine_type()","machine_type_id()","machine_type_id()","machine_types()","machine_types()","machine_types()","machine_types()","message()","message=()","method_missing()","namespace()","namevar()","network()","network()","network=()","network_settings()","networks()","new()","new()","new()","new()","new()","new()","new_machine()","node()","node()","node=()","node_by_ip()","node_config()","node_exec()","node_groups()","node_ignore()","node_info()","nodes()","nodes_by_reference()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","operation()","operation=()","packages()","parse_params()","private_ip()","private_ip()","private_ip()","private_ip()","private_key()","private_key=()","process()","profile_id()","profiles()","profiles()","profiles=()","project()","provision()","provision()","provision()","provisioner()","provisioner_info()","provisioners()","provisioners()","public_ip()","public_ip()","public_ip()","public_ip()","public_ip()","public_key()","public_key=()","ready()","refresh_config()","region()","region=()","regions()","regions()","regions()","register()","register()","register()","register_plugins()","reload()","reload()","reload()","reload()","reload()","reload()","reload()","reload()","reload()","reload()","remote()","remote()","remove()","remove()","remove_plugin()","remove_plugin()","remove_plugin()","render()","render()","render()","render_assignment()","render_image()","render_image()","render_image()","render_image()","render_machine_type()","render_machine_type()","render_machine_type()","render_machine_type()","render_name()","render_processed()","render_value()","resources()","resources=()","router()","run()","run()","running?()","running?()","running?()","running?()","save()","save()","save()","save()","save()","scope()","search()","search_files()","select_largest()","send_files()","separate()","server()","server()","server=()","server=()","set()","set_command()","set_connection()","set_connection()","set_connection()","set_location()","set_location()","set_remote()","set_remote()","setup()","setup()","shares()","shares=()","ssh()","ssh=()","ssh_download()","ssh_exec()","ssh_path()","ssh_port()","ssh_port=()","ssh_terminal()","ssh_upload()","ssh_wait_for_ready()","ssh_wait_for_ready()","start()","start()","start()","start()","start()","start()","start()","start()","start_machine()","state()","state()","state()","state()","state()","state()","status()","stop()","stop()","stop()","stop()","stop()","stop()","stop()","suitable?()","supported_profiles()","synopsis()","tag()","terminal()","terminal()","terminal()","terminal()","terminal()","test_node()","title()","title=()","to_name()","translate()","translate()","translate()","translate()","translate_reference()","translate_reference()","translate_reference()","translate_reference()","translate_resource_refs()","translate_state()","type_info()","type_name()","update_project()","upload()","upload()","upload()","upload()","upload()","upload()","upload()","usable_image?()","usable_image?()","usable_image?()","user()","user=()","vagrant?()","vagrant_config()","vagrant_config_loaded?()","validate()","validate()","vm()","vm=()","vm_machine()","warn()","readme"],"longSearchIndex":["corl","corl::action","corl::action::authorize","corl::action::bootstrap","corl::action::build","corl::action::destroy","corl::action::exec","corl::action::facts","corl::action::image","corl::action::images","corl::action::ip","corl::action::keypair","corl::action::lookup","corl::action::machines","corl::action::provision","corl::action::reboot","corl::action::regions","corl::action::revoke","corl::action::seed","corl::action::spawn","corl::action::ssh","corl::action::start","corl::action::stop","corl::action::vagrantfile","corl::configuration","corl::configuration::file","corl::errors","corl::event","corl::event::puppet","corl::facade","corl::machine","corl::machine::aws","corl::machine::fog","corl::machine::physical","corl::machine::rackspace","corl::machine::vagrant","corl::mixin","corl::mixin::action","corl::mixin::action::keypair","corl::mixin::lookup","corl::mixin::machine","corl::mixin::machine::ssh","corl::mixin::macro","corl::mixin::macro::networksettings","corl::network","corl::network::default","corl::node","corl::node::aws","corl::node::fog","corl::node::local","corl::node::rackspace","corl::node::vagrant","corl::plugin","corl::plugin::cloudaction","corl::provisioner","corl::provisioner::puppetnode","corl::template","corl::template::environment","corl::util","corl::util::puppet","corl::util::puppet::resource","corl::util::puppet::resourcegroup","corl::vagrant","corl::vagrant::config","facter","facter::util","facter::util::loader","fog","fog::compute","fog::compute::aws","fog::compute::aws::server","fog::compute::rackspacev2","fog::compute::rackspacev2::server","hiera","hiera::backend","hiera::corl_logger","nucleon","nucleon::config","nucleon::plugin","nucleon::plugin::base","nucleon::plugin::configuration","nucleon::plugin::machine","nucleon::plugin::network","nucleon::plugin::node","nucleon::plugin::provisioner","object","puppet","puppet::databinding","puppet::databinding::corl","puppet::indirector","puppet::indirector::corl","puppet::parser","puppet::parser::functions","vagrant","vagrant::config","vagrant::config::loader","vagrant::vagrantfile","vagrantplugins","vagrantplugins::corl","vagrantplugins::corl::action","vagrantplugins::corl::action::deletecache","vagrantplugins::corl::action::initkeys","vagrantplugins::corl::action::linknetwork","vagrantplugins::corl::baseaction","vagrantplugins::corl::command","vagrantplugins::corl::command::launcher","vagrantplugins::corl::config","vagrantplugins::corl::config::corl","vagrantplugins::corl::plugin","vagrantplugins::corl::provisioner","vagrantplugins::corl::provisioner::corl","corl::version()","nucleon::plugin::node#action()","corl::util::puppet::add()","corl::util::puppet::resourcegroup#add()","corl::util::puppet::add_class()","corl::util::puppet::resourcegroup#add_composite_resource()","corl::util::puppet::add_definition()","nucleon::plugin::network#add_node()","corl::util::puppet::add_resource()","corl::provisioner::puppetnode#add_search_path()","corl::node::fog#api_key()","corl::node::fog#api_key=()","corl::node::fog#api_user()","corl::node::fog#api_user=()","corl::action::authorize#arguments()","corl::action::bootstrap#arguments()","corl::action::destroy#arguments()","corl::action::exec#arguments()","corl::action::image#arguments()","corl::action::images#arguments()","corl::action::lookup#arguments()","corl::action::machines#arguments()","corl::action::reboot#arguments()","corl::action::regions#arguments()","corl::action::revoke#arguments()","corl::action::seed#arguments()","corl::action::spawn#arguments()","corl::action::ssh#arguments()","corl::action::start#arguments()","corl::action::stop#arguments()","corl::configuration::file#attach()","nucleon::plugin::configuration#attach()","nucleon::plugin::network#attach_data()","nucleon::plugin::network#attach_files()","nucleon::plugin::node#attach_keys()","corl::node::fog#auth_url()","corl::node::fog#auth_url=()","nucleon::plugin::configuration#autoload()","nucleon::plugin::configuration#autoload=()","nucleon::plugin::configuration#autosave()","nucleon::plugin::configuration#autosave=()","nucleon::plugin::network#batch()","nucleon::plugin::node#bootstrap()","corl::node::vagrant#bootstrap_script()","nucleon::plugin::node#bootstrap_script()","corl::node::vagrant#bootstrap_script=()","nucleon::plugin::node#bootstrap_script=()","corl::node::vagrant#build()","corl::provisioner::puppetnode#build()","nucleon::plugin::node#build()","nucleon::plugin::provisioner#build()","nucleon::plugin::network#build_directory()","nucleon::plugin::provisioner#build_directory()","nucleon::plugin::node::build_info()","nucleon::plugin::provisioner::build_info()","nucleon::plugin::provisioner#build_info()","nucleon::plugin::provisioner#build_locations()","nucleon::plugin::provisioner#build_profiles()","corl::node::vagrant#build_time()","nucleon::plugin::node#build_time()","corl::node::vagrant#build_time=()","nucleon::plugin::node#build_time=()","nucleon::plugin::configuration#cache()","nucleon::plugin::network#cache()","vagrantplugins::corl::action::deletecache#call()","vagrantplugins::corl::action::initkeys#call()","vagrantplugins::corl::action::linknetwork#call()","vagrantplugins::corl::baseaction#call()","nucleon::plugin::configuration#can_persist?()","corl::event::puppet#check()","vagrantplugins::corl::provisioner::corl#clean()","nucleon::plugin::configuration#clear()","vagrant::config::loader#clear_config_cache()","nucleon::plugin::node#cli()","nucleon::plugin::node#cli_capture()","nucleon::plugin::node#cli_check()","corl::mixin::machine::ssh#close_ssh_session()","corl::machine::vagrant#command()","corl::vagrant::command()","nucleon::plugin::node#command()","corl::vagrant::command=()","corl::provisioner::puppetnode#compiler()","corl::util::puppet::resourcegroup#composite_resources()","corl::util::puppet::resourcegroup#composite_resources=()","corl::machine::fog#compute()","corl::machine::fog#compute=()","corl::provisioner::puppetnode#concatenate()","nucleon::plugin::provisioner#concatenate()","corl::mixin::lookup#config_initialized?()","corl::facade#configuration()","corl::facade#configurations()","corl::action::authorize#configure()","corl::action::bootstrap#configure()","corl::action::destroy#configure()","corl::action::exec#configure()","corl::action::image#configure()","corl::action::images#configure()","corl::action::keypair#configure()","corl::action::lookup#configure()","corl::action::machines#configure()","corl::action::provision#configure()","corl::action::reboot#configure()","corl::action::regions#configure()","corl::action::revoke#configure()","corl::action::seed#configure()","corl::action::spawn#configure()","corl::action::ssh#configure()","corl::action::start#configure()","corl::action::stop#configure()","corl::action::vagrantfile#configure()","corl::plugin::cloudaction#configure()","vagrantplugins::corl::provisioner::corl#configure()","corl::vagrant::config::configure_provisioner()","corl::vagrant::config::configure_shares()","corl::vagrant::config::configure_ssh()","corl::vagrant::config::configure_vagrant()","corl::vagrant::config::configure_vm()","corl::node::fog#connection_options()","corl::node::fog#connection_options=()","corl::machine::aws#create()","corl::machine::fog#create()","corl::machine::physical#create()","corl::machine::vagrant#create()","corl::node::aws#create()","corl::node::fog#create()","corl::node::rackspace#create()","corl::node::vagrant#create()","nucleon::plugin::machine#create()","nucleon::plugin::node#create()","corl::node::aws#create_config()","corl::node::rackspace#create_config()","corl::machine::aws#create_image()","corl::machine::fog#create_image()","corl::machine::physical#create_image()","corl::machine::rackspace#create_image()","corl::machine::vagrant#create_image()","corl::node::fog#create_image()","corl::node::vagrant#create_image()","nucleon::plugin::machine#create_image()","nucleon::plugin::node#create_image()","nucleon::plugin::node#create_machine()","corl::machine::fog#created?()","corl::machine::physical#created?()","corl::machine::vagrant#created?()","nucleon::plugin::machine#created?()","nucleon::plugin::node#custom_facts()","nucleon::plugin::node#custom_facts=()","hiera::corl_logger::debug()","corl::mixin::lookup#debug_lookup()","corl::util::puppet::debug_resource()","corl::util::puppet::resourcegroup#default()","corl::util::puppet::resourcegroup#default=()","corl::util::puppet::resource#defaults()","nucleon::plugin::configuration#delete()","corl::configuration::file#delete_attachments()","nucleon::plugin::configuration#delete_attachments()","nucleon::plugin::network#delete_attachments()","nucleon::plugin::node#delete_keys()","corl::machine::aws#destroy()","corl::machine::fog#destroy()","corl::machine::physical#destroy()","corl::machine::vagrant#destroy()","corl::node::fog#destroy()","corl::node::vagrant#destroy()","nucleon::plugin::machine#destroy()","nucleon::plugin::node#destroy()","nucleon::plugin::configuration#directory()","nucleon::plugin::network#directory()","nucleon::plugin::provisioner#directory()","nucleon::plugin::provisioner#directory=()","corl::machine::fog#download()","corl::machine::physical#download()","corl::machine::vagrant#download()","corl::node::fog#download()","corl::node::vagrant#download()","nucleon::plugin::machine#download()","nucleon::plugin::node#download()","corl::util::puppet::each_module()","nucleon::plugin::network#each_node_config()","corl::event::puppet#element()","corl::event::puppet#element=()","corl::plugin::cloudaction#ensure_network()","corl::plugin::cloudaction#ensure_node()","corl::util::puppet::resource#ensure_ready()","corl::machine::aws#ensure_security_group()","corl::machine::vagrant#env()","vagrantplugins::corl::command::launcher#env()","corl::machine::fog#exec()","corl::machine::physical#exec()","corl::machine::vagrant#exec()","corl::node::fog#exec()","corl::node::vagrant#exec()","nucleon::plugin::machine#exec()","nucleon::plugin::node#exec()","corl::node::fog#exec_options()","corl::node::vagrant#exec_options()","corl::action::authorize#execute()","corl::action::bootstrap#execute()","corl::action::build#execute()","corl::action::destroy#execute()","corl::action::exec#execute()","corl::action::facts#execute()","corl::action::image#execute()","corl::action::images#execute()","corl::action::ip#execute()","corl::action::keypair#execute()","corl::action::lookup#execute()","corl::action::machines#execute()","corl::action::provision#execute()","corl::action::reboot#execute()","corl::action::regions#execute()","corl::action::revoke#execute()","corl::action::seed#execute()","corl::action::spawn#execute()","corl::action::ssh#execute()","corl::action::start#execute()","corl::action::stop#execute()","corl::action::vagrantfile#execute()","corl::plugin::cloudaction#execute()","vagrantplugins::corl::command::launcher#execute()","corl::plugin::cloudaction#execute_remote()","corl::action::spawn#extract_hostnames()","corl::mixin::lookup#fact()","corl::mixin::lookup#facts()","corl::configuration::file#fetch_project()","corl::node::vagrant#filter_output()","nucleon::plugin::node#filter_output()","vagrantplugins::corl::config::corl#finalize!()","puppet::indirector::corl#find()","nucleon::plugin::provisioner#find_profiles()","nucleon::plugin::provisioner#gateway()","nucleon::plugin::provisioner#gateway=()","corl::provisioner::puppetnode#get_node()","corl::util::puppet::resource#group()","corl::provisioner::puppetnode#handle()","nucleon::plugin::network#has_nodes?()","corl::mixin::lookup#hiera()","corl::mixin::lookup#hiera_configuration()","corl::mixin::lookup#hiera_facts()","nucleon::plugin::node#hiera_facts()","corl::mixin::lookup#hiera_override_dir()","nucleon::plugin::network#hiera_override_dir()","nucleon::plugin::node#hiera_override_dir()","nucleon::plugin::network#home()","nucleon::plugin::node#home()","corl::machine::physical#hostname()","nucleon::plugin::machine#hostname()","nucleon::plugin::node#hostname()","nucleon::plugin::node#id()","nucleon::plugin::provisioner#id()","corl::action::bootstrap#ignore()","corl::action::destroy#ignore()","corl::action::image#ignore()","corl::action::images#ignore()","corl::action::keypair#ignore()","corl::action::machines#ignore()","corl::action::reboot#ignore()","corl::action::regions#ignore()","corl::action::spawn#ignore()","corl::action::ssh#ignore()","corl::action::start#ignore()","corl::action::stop#ignore()","nucleon::plugin::configuration#ignore()","nucleon::plugin::network#ignore()","corl::machine::fog#image()","corl::machine::physical#image()","nucleon::plugin::machine#image()","nucleon::plugin::node#image()","nucleon::plugin::node#image=()","corl::node::vagrant#image_id()","nucleon::plugin::node#image_id()","corl::node::aws#image_search_text()","corl::node::rackspace#image_search_text()","corl::node::vagrant#image_search_text()","nucleon::plugin::node#image_search_text()","corl::machine::fog#images()","nucleon::plugin::machine#images()","nucleon::plugin::node#images()","corl::provisioner::puppetnode#import()","corl::util::puppet::import()","corl::util::puppet::resource#import()","nucleon::plugin::configuration#import()","corl::util::puppet::include()","corl::util::puppet::resource#info()","corl::util::puppet::resourcegroup#info()","corl::util::puppet::resource#info=()","corl::util::puppet::resourcegroup#info=()","corl::plugin::cloudaction#init_network()","nucleon::plugin::network#init_node()","corl::provisioner::puppetnode#init_puppet()","corl::machine::aws#init_server()","corl::machine::fog#init_server()","corl::machine::rackspace#init_server()","corl::node::vagrant#init_shares()","corl::machine::aws#init_ssh()","corl::mixin::machine::ssh#init_ssh_session()","nucleon::plugin::provisioner#initialized?()","corl::util::puppet::resourcegroup#inspect()","corl::node::fog#key_config()","corl::mixin::action::keypair#keypair()","corl::mixin::action::keypair#keypair=()","corl::mixin::action::keypair#keypair_clean()","corl::mixin::action::keypair#keypair_config()","corl::mixin::action::keypair#keypair_ignore()","corl::machine::aws#keypair_name()","corl::lib_path()","corl::configuration::file#load()","corl::machine::fog#load()","corl::machine::physical#load()","corl::machine::vagrant#load()","nucleon::plugin::configuration#load()","nucleon::plugin::machine#load()","nucleon::plugin::network#load()","facter::util::loader#load_dir()","corl::vagrant::config::load_network()","corl::node::local#local?()","nucleon::plugin::node#local?()","nucleon::plugin::node#local_machine()","nucleon::plugin::node#local_machine=()","nucleon::plugin::network#local_node()","nucleon::plugin::node#localize()","corl::util::puppet::logger()","corl::mixin::lookup#lookup()","corl::provisioner::puppetnode#lookup()","corl::util::puppet::lookup()","hiera::backend::lookup()","nucleon::plugin::provisioner#lookup()","corl::mixin::lookup#lookup_array()","nucleon::plugin::node#lookup_array()","nucleon::plugin::node#lookup_config()","nucleon::plugin::node#lookup_facts()","corl::mixin::lookup#lookup_hash()","nucleon::plugin::node#lookup_hash()","nucleon::plugin::node#machine()","nucleon::plugin::node#machine=()","corl::node::aws#machine_config()","corl::node::fog#machine_config()","corl::node::rackspace#machine_config()","corl::node::vagrant#machine_config()","nucleon::plugin::node#machine_config()","corl::machine::fog#machine_type()","corl::machine::physical#machine_type()","nucleon::plugin::machine#machine_type()","nucleon::plugin::node#machine_type()","corl::node::vagrant#machine_type_id()","nucleon::plugin::node#machine_type_id()","corl::machine::fog#machine_types()","corl::machine::vagrant#machine_types()","nucleon::plugin::machine#machine_types()","nucleon::plugin::node#machine_types()","corl::event::puppet#message()","corl::event::puppet#message=()","nucleon::plugin::node#method_missing()","corl::plugin::cloudaction#namespace()","corl::util::puppet::namevar()","corl::facade#network()","corl::vagrant::config::network()","corl::vagrant::config::network=()","corl::mixin::macro::networksettings#network_settings()","corl::facade#networks()","corl::util::puppet::resource::new()","corl::util::puppet::resourcegroup::new()","puppet::indirector::corl::new()","vagrantplugins::corl::baseaction::new()","vagrantplugins::corl::config::corl::new()","vagrantplugins::corl::provisioner::corl::new()","corl::machine::vagrant#new_machine()","corl::facade#node()","nucleon::plugin::machine#node()","nucleon::plugin::machine#node=()","nucleon::plugin::network#node_by_ip()","corl::plugin::cloudaction#node_config()","corl::plugin::cloudaction#node_exec()","nucleon::plugin::network#node_groups()","corl::plugin::cloudaction#node_ignore()","nucleon::plugin::network#node_info()","corl::facade#nodes()","nucleon::plugin::network#nodes_by_reference()","corl::configuration::file#normalize()","corl::event::puppet#normalize()","corl::machine::physical#normalize()","corl::mixin::lookup#normalize()","corl::network::default#normalize()","corl::node::aws#normalize()","corl::node::fog#normalize()","corl::node::local#normalize()","corl::node::rackspace#normalize()","corl::node::vagrant#normalize()","corl::provisioner::puppetnode#normalize()","corl::util::puppet::resourcegroup#normalize()","nucleon::plugin::configuration#normalize()","nucleon::plugin::machine#normalize()","nucleon::plugin::network#normalize()","nucleon::plugin::node#normalize()","nucleon::plugin::provisioner#normalize()","corl::event::puppet#operation()","corl::event::puppet#operation=()","nucleon::plugin::provisioner#packages()","corl::vagrant::config::parse_params()","corl::machine::fog#private_ip()","corl::machine::physical#private_ip()","nucleon::plugin::machine#private_ip()","nucleon::plugin::node#private_ip()","nucleon::plugin::node#private_key()","nucleon::plugin::node#private_key=()","corl::util::puppet::resource#process()","corl::provisioner::puppetnode#profile_id()","nucleon::plugin::node#profiles()","nucleon::plugin::provisioner#profiles()","nucleon::plugin::node#profiles=()","nucleon::plugin::configuration#project()","corl::provisioner::puppetnode#provision()","nucleon::plugin::provisioner#provision()","vagrantplugins::corl::provisioner::corl#provision()","corl::facade#provisioner()","nucleon::plugin::node#provisioner_info()","corl::facade#provisioners()","nucleon::plugin::node#provisioners()","corl::facade#public_ip()","corl::machine::fog#public_ip()","corl::machine::physical#public_ip()","nucleon::plugin::machine#public_ip()","nucleon::plugin::node#public_ip()","nucleon::plugin::node#public_key()","nucleon::plugin::node#public_key=()","corl::util::puppet::resource#ready()","corl::machine::vagrant#refresh_config()","corl::node::fog#region()","corl::node::fog#region=()","corl::node::aws#regions()","corl::node::fog#regions()","corl::node::rackspace#regions()","corl::provisioner::puppetnode#register()","corl::vagrant::config::register()","nucleon::plugin::provisioner#register()","corl::util::puppet::register_plugins()","corl::machine::aws#reload()","corl::machine::fog#reload()","corl::machine::physical#reload()","corl::machine::rackspace#reload()","corl::machine::vagrant#reload()","corl::node::fog#reload()","corl::node::vagrant#reload()","nucleon::plugin::machine#reload()","nucleon::plugin::node#reload()","vagrant::vagrantfile#reload()","nucleon::plugin::configuration#remote()","nucleon::plugin::network#remote()","corl::configuration::file#remove()","nucleon::plugin::configuration#remove()","nucleon::plugin::configuration#remove_plugin()","nucleon::plugin::network#remove_plugin()","nucleon::plugin::node#remove_plugin()","corl::event::puppet#render()","corl::util::puppet::resource::render()","corl::util::puppet::resource#render()","corl::template::environment#render_assignment()","corl::node::aws#render_image()","corl::node::rackspace#render_image()","corl::node::vagrant#render_image()","nucleon::plugin::node#render_image()","corl::node::aws#render_machine_type()","corl::node::rackspace#render_machine_type()","corl::node::vagrant#render_machine_type()","nucleon::plugin::node#render_machine_type()","corl::template::environment#render_name()","corl::template::environment#render_processed()","corl::template::environment#render_value()","corl::util::puppet::resourcegroup#resources()","corl::util::puppet::resourcegroup#resources=()","corl::configuration::file#router()","corl::machine::vagrant#run()","nucleon::plugin::node#run()","corl::machine::fog#running?()","corl::machine::physical#running?()","corl::machine::vagrant#running?()","nucleon::plugin::machine#running?()","corl::configuration::file#save()","corl::node::vagrant#save()","nucleon::plugin::configuration#save()","nucleon::plugin::network#save()","nucleon::plugin::node#save()","corl::provisioner::puppetnode#scope()","corl::configuration::file#search()","corl::configuration::file#search_files()","corl::configuration::file#select_largest()","nucleon::plugin::node#send_files()","corl::configuration::file#separate()","corl::machine::fog#server()","corl::machine::vagrant#server()","corl::machine::fog#server=()","corl::machine::vagrant#server=()","nucleon::plugin::configuration#set()","corl::machine::vagrant#set_command()","corl::machine::aws#set_connection()","corl::machine::fog#set_connection()","corl::machine::rackspace#set_connection()","corl::configuration::file#set_location()","nucleon::plugin::configuration#set_location()","nucleon::plugin::configuration#set_remote()","nucleon::plugin::network#set_remote()","fog::compute::aws::server#setup()","fog::compute::rackspacev2::server#setup()","corl::node::vagrant#shares()","corl::node::vagrant#shares=()","corl::node::vagrant#ssh()","corl::node::vagrant#ssh=()","corl::mixin::machine::ssh#ssh_download()","corl::mixin::machine::ssh#ssh_exec()","nucleon::plugin::node#ssh_path()","nucleon::plugin::node#ssh_port()","nucleon::plugin::node#ssh_port=()","corl::mixin::machine::ssh#ssh_terminal()","corl::mixin::machine::ssh#ssh_upload()","corl::machine::fog#ssh_wait_for_ready()","corl::mixin::machine::ssh#ssh_wait_for_ready()","corl::machine::physical#start()","corl::machine::vagrant#start()","corl::node::aws#start()","corl::node::fog#start()","corl::node::rackspace#start()","corl::node::vagrant#start()","nucleon::plugin::machine#start()","nucleon::plugin::node#start()","corl::machine::vagrant#start_machine()","corl::machine::fog#state()","corl::machine::physical#state()","corl::machine::vagrant#state()","corl::node::vagrant#state()","nucleon::plugin::machine#state()","nucleon::plugin::node#state()","corl::provisioner::puppetnode::status()","corl::machine::fog#stop()","corl::machine::physical#stop()","corl::machine::vagrant#stop()","corl::node::fog#stop()","corl::node::vagrant#stop()","nucleon::plugin::machine#stop()","nucleon::plugin::node#stop()","hiera::corl_logger::suitable?()","nucleon::plugin::provisioner#supported_profiles()","vagrantplugins::corl::command::launcher::synopsis()","corl::util::puppet::resource#tag()","corl::machine::fog#terminal()","corl::machine::physical#terminal()","corl::machine::vagrant#terminal()","nucleon::plugin::machine#terminal()","nucleon::plugin::node#terminal()","nucleon::plugin::network#test_node()","corl::util::puppet::resource#title()","corl::util::puppet::resource#title=()","corl::util::puppet::to_name()","corl::util::puppet::resource#translate()","corl::util::puppet::resourcegroup#translate()","nucleon::plugin::node::translate()","nucleon::plugin::provisioner::translate()","nucleon::plugin::node::translate_reference()","nucleon::plugin::node#translate_reference()","nucleon::plugin::provisioner::translate_reference()","nucleon::plugin::provisioner#translate_reference()","corl::util::puppet::resource#translate_resource_refs()","nucleon::plugin::machine#translate_state()","corl::util::puppet::type_info()","corl::util::puppet::type_name()","corl::configuration::file#update_project()","corl::machine::fog#upload()","corl::machine::physical#upload()","corl::machine::vagrant#upload()","corl::node::fog#upload()","corl::node::vagrant#upload()","nucleon::plugin::machine#upload()","nucleon::plugin::node#upload()","corl::node::aws#usable_image?()","corl::node::rackspace#usable_image?()","nucleon::plugin::node#usable_image?()","nucleon::plugin::node#user()","nucleon::plugin::node#user=()","corl::facade#vagrant?()","corl::facade#vagrant_config()","corl::facade#vagrant_config_loaded?()","corl::plugin::cloudaction#validate()","vagrantplugins::corl::config::corl#validate()","corl::node::vagrant#vm()","corl::node::vagrant#vm=()","vagrantplugins::corl::command::launcher#vm_machine()","hiera::corl_logger::warn()",""],"info":[["CORL","","CORL.html","",""],["CORL::Action","","CORL/Action.html","",""],["CORL::Action::Authorize","","CORL/Action/Authorize.html","",""],["CORL::Action::Bootstrap","","CORL/Action/Bootstrap.html","",""],["CORL::Action::Build","","CORL/Action/Build.html","",""],["CORL::Action::Destroy","","CORL/Action/Destroy.html","",""],["CORL::Action::Exec","","CORL/Action/Exec.html","",""],["CORL::Action::Facts","","CORL/Action/Facts.html","",""],["CORL::Action::Image","","CORL/Action/Image.html","",""],["CORL::Action::Images","","CORL/Action/Images.html","",""],["CORL::Action::Ip","","CORL/Action/Ip.html","",""],["CORL::Action::Keypair","","CORL/Action/Keypair.html","",""],["CORL::Action::Lookup","","CORL/Action/Lookup.html","",""],["CORL::Action::Machines","","CORL/Action/Machines.html","",""],["CORL::Action::Provision","","CORL/Action/Provision.html","",""],["CORL::Action::Reboot","","CORL/Action/Reboot.html","",""],["CORL::Action::Regions","","CORL/Action/Regions.html","",""],["CORL::Action::Revoke","","CORL/Action/Revoke.html","",""],["CORL::Action::Seed","","CORL/Action/Seed.html","",""],["CORL::Action::Spawn","","CORL/Action/Spawn.html","",""],["CORL::Action::Ssh","","CORL/Action/Ssh.html","",""],["CORL::Action::Start","","CORL/Action/Start.html","",""],["CORL::Action::Stop","","CORL/Action/Stop.html","",""],["CORL::Action::Vagrantfile","","CORL/Action/Vagrantfile.html","",""],["CORL::Configuration","","CORL/Configuration.html","",""],["CORL::Configuration::File","","CORL/Configuration/File.html","",""],["CORL::Errors","","CORL/Errors.html","",""],["CORL::Event","","CORL/Event.html","",""],["CORL::Event::Puppet","","CORL/Event/Puppet.html","",""],["CORL::Facade","","CORL/Facade.html","",""],["CORL::Machine","","CORL/Machine.html","",""],["CORL::Machine::Aws","","CORL/Machine/Aws.html","",""],["CORL::Machine::Fog","","CORL/Machine/Fog.html","",""],["CORL::Machine::Physical","","CORL/Machine/Physical.html","",""],["CORL::Machine::Rackspace","","CORL/Machine/Rackspace.html","",""],["CORL::Machine::Vagrant","","CORL/Machine/Vagrant.html","",""],["CORL::Mixin","","CORL/Mixin.html","",""],["CORL::Mixin::Action","","CORL/Mixin/Action.html","",""],["CORL::Mixin::Action::Keypair","","CORL/Mixin/Action/Keypair.html","",""],["CORL::Mixin::Lookup","","CORL/Mixin/Lookup.html","",""],["CORL::Mixin::Machine","","CORL/Mixin/Machine.html","",""],["CORL::Mixin::Machine::SSH","","CORL/Mixin/Machine/SSH.html","",""],["CORL::Mixin::Macro","","CORL/Mixin/Macro.html","",""],["CORL::Mixin::Macro::NetworkSettings","","CORL/Mixin/Macro/NetworkSettings.html","",""],["CORL::Network","","CORL/Network.html","",""],["CORL::Network::Default","","CORL/Network/Default.html","",""],["CORL::Node","","CORL/Node.html","",""],["CORL::Node::Aws","","CORL/Node/Aws.html","",""],["CORL::Node::Fog","","CORL/Node/Fog.html","",""],["CORL::Node::Local","","CORL/Node/Local.html","",""],["CORL::Node::Rackspace","","CORL/Node/Rackspace.html","",""],["CORL::Node::Vagrant","","CORL/Node/Vagrant.html","",""],["CORL::Plugin","","CORL/Plugin.html","",""],["CORL::Plugin::CloudAction","","CORL/Plugin/CloudAction.html","",""],["CORL::Provisioner","","CORL/Provisioner.html","",""],["CORL::Provisioner::Puppetnode","","CORL/Provisioner/Puppetnode.html","",""],["CORL::Template","","CORL/Template.html","",""],["CORL::Template::Environment","","CORL/Template/Environment.html","",""],["CORL::Util","","CORL/Util.html","",""],["CORL::Util::Puppet","","CORL/Util/Puppet.html","",""],["CORL::Util::Puppet::Resource","","CORL/Util/Puppet/Resource.html","",""],["CORL::Util::Puppet::ResourceGroup","","CORL/Util/Puppet/ResourceGroup.html","",""],["CORL::Vagrant","","CORL/Vagrant.html","",""],["CORL::Vagrant::Config","","CORL/Vagrant/Config.html","",""],["Facter","","Facter.html","",""],["Facter::Util","","Facter/Util.html","",""],["Facter::Util::Loader","","Facter/Util/Loader.html","",""],["Fog","","Fog.html","",""],["Fog::Compute","","Fog/Compute.html","",""],["Fog::Compute::AWS","","Fog/Compute/AWS.html","",""],["Fog::Compute::AWS::Server","","Fog/Compute/AWS/Server.html","",""],["Fog::Compute::RackspaceV2","","Fog/Compute/RackspaceV2.html","",""],["Fog::Compute::RackspaceV2::Server","","Fog/Compute/RackspaceV2/Server.html","",""],["Hiera","","Hiera.html","",""],["Hiera::Backend","","Hiera/Backend.html","",""],["Hiera::Corl_logger","","Hiera/Corl_logger.html","",""],["Nucleon","","Nucleon.html","",""],["Nucleon::Config","","Nucleon/Config.html","",""],["Nucleon::Plugin","","Nucleon/Plugin.html","",""],["Nucleon::Plugin::Base","","Nucleon/Plugin/Base.html","",""],["Nucleon::Plugin::Configuration","","Nucleon/Plugin/Configuration.html","",""],["Nucleon::Plugin::Machine","","Nucleon/Plugin/Machine.html","",""],["Nucleon::Plugin::Network","","Nucleon/Plugin/Network.html","",""],["Nucleon::Plugin::Node","","Nucleon/Plugin/Node.html","",""],["Nucleon::Plugin::Provisioner","","Nucleon/Plugin/Provisioner.html","",""],["Object","","Object.html","",""],["Puppet","","Puppet.html","",""],["Puppet::DataBinding","","Puppet/DataBinding.html","",""],["Puppet::DataBinding::Corl","","Puppet/DataBinding/Corl.html","",""],["Puppet::Indirector","","Puppet/Indirector.html","",""],["Puppet::Indirector::Corl","","Puppet/Indirector/Corl.html","",""],["Puppet::Parser","","Puppet/Parser.html","",""],["Puppet::Parser::Functions","","Puppet/Parser/Functions.html","","<p>corl_include.rb\n<p>This function includes classes based on dynamic configurations. following\nthis order\n<p>Hiera …\n"],["Vagrant","","Vagrant.html","","<p>Because we create configurations and operate on resulting machines during\nthe course of a single CLI …\n"],["Vagrant::Config","","Vagrant/Config.html","",""],["Vagrant::Config::Loader","","Vagrant/Config/Loader.html","",""],["Vagrant::Vagrantfile","","Vagrant/Vagrantfile.html","",""],["VagrantPlugins","","VagrantPlugins.html","",""],["VagrantPlugins::CORL","","VagrantPlugins/CORL.html","",""],["VagrantPlugins::CORL::Action","","VagrantPlugins/CORL/Action.html","",""],["VagrantPlugins::CORL::Action::DeleteCache","","VagrantPlugins/CORL/Action/DeleteCache.html","",""],["VagrantPlugins::CORL::Action::InitKeys","","VagrantPlugins/CORL/Action/InitKeys.html","",""],["VagrantPlugins::CORL::Action::LinkNetwork","","VagrantPlugins/CORL/Action/LinkNetwork.html","",""],["VagrantPlugins::CORL::BaseAction","","VagrantPlugins/CORL/BaseAction.html","",""],["VagrantPlugins::CORL::Command","","VagrantPlugins/CORL/Command.html","",""],["VagrantPlugins::CORL::Command::Launcher","","VagrantPlugins/CORL/Command/Launcher.html","",""],["VagrantPlugins::CORL::Config","","VagrantPlugins/CORL/Config.html","",""],["VagrantPlugins::CORL::Config::CORL","","VagrantPlugins/CORL/Config/CORL.html","",""],["VagrantPlugins::CORL::Plugin","","VagrantPlugins/CORL/Plugin.html","",""],["VagrantPlugins::CORL::Provisioner","","VagrantPlugins/CORL/Provisioner.html","",""],["VagrantPlugins::CORL::Provisioner::CORL","","VagrantPlugins/CORL/Provisioner/CORL.html","",""],["VERSION","CORL","CORL.html#method-c-VERSION","()",""],["action","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-action","(provider, options = {})",""],["add","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-add","(type_name, resources, defaults = {}, options = {})",""],["add","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-add","(resources, options = {})",""],["add_class","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-add_class","(title, properties, options = {})",""],["add_composite_resource","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-add_composite_resource","(name, resource_names)",""],["add_definition","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-add_definition","(type, title, properties, options = {})",""],["add_node","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-add_node","(provider, name, options = {})",""],["add_resource","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-add_resource","(type, title, properties, options = {})",""],["add_search_path","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-add_search_path","(type, resource_name)",""],["api_key","CORL::Node::Fog","CORL/Node/Fog.html#method-i-api_key","()",""],["api_key=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-api_key-3D","(api_key)",""],["api_user","CORL::Node::Fog","CORL/Node/Fog.html#method-i-api_user","()",""],["api_user=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-api_user-3D","(api_user)",""],["arguments","CORL::Action::Authorize","CORL/Action/Authorize.html#method-i-arguments","()",""],["arguments","CORL::Action::Bootstrap","CORL/Action/Bootstrap.html#method-i-arguments","()",""],["arguments","CORL::Action::Destroy","CORL/Action/Destroy.html#method-i-arguments","()",""],["arguments","CORL::Action::Exec","CORL/Action/Exec.html#method-i-arguments","()",""],["arguments","CORL::Action::Image","CORL/Action/Image.html#method-i-arguments","()",""],["arguments","CORL::Action::Images","CORL/Action/Images.html#method-i-arguments","()",""],["arguments","CORL::Action::Lookup","CORL/Action/Lookup.html#method-i-arguments","()",""],["arguments","CORL::Action::Machines","CORL/Action/Machines.html#method-i-arguments","()",""],["arguments","CORL::Action::Reboot","CORL/Action/Reboot.html#method-i-arguments","()",""],["arguments","CORL::Action::Regions","CORL/Action/Regions.html#method-i-arguments","()",""],["arguments","CORL::Action::Revoke","CORL/Action/Revoke.html#method-i-arguments","()",""],["arguments","CORL::Action::Seed","CORL/Action/Seed.html#method-i-arguments","()",""],["arguments","CORL::Action::Spawn","CORL/Action/Spawn.html#method-i-arguments","()",""],["arguments","CORL::Action::Ssh","CORL/Action/Ssh.html#method-i-arguments","()",""],["arguments","CORL::Action::Start","CORL/Action/Start.html#method-i-arguments","()",""],["arguments","CORL::Action::Stop","CORL/Action/Stop.html#method-i-arguments","()",""],["attach","CORL::Configuration::File","CORL/Configuration/File.html#method-i-attach","(type, name, data, options = {})",""],["attach","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-attach","(type, name, data, options = {})",""],["attach_data","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-attach_data","(type, name, data, options = {})",""],["attach_files","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-attach_files","(type, name, files, options = {})",""],["attach_keys","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-attach_keys","(keypair)",""],["auth_url","CORL::Node::Fog","CORL/Node/Fog.html#method-i-auth_url","()",""],["auth_url=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-auth_url-3D","(auth_url)",""],["autoload","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-autoload","(default = false)",""],["autoload=","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-autoload-3D","(autoload)",""],["autosave","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-autosave","(default = false)",""],["autosave=","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-autosave-3D","(autosave)",""],["batch","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-batch","(node_references, default_provider = nil, parallel = true, &code)",""],["bootstrap","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-bootstrap","(local_path, options = {})",""],["bootstrap_script","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-bootstrap_script","()",""],["bootstrap_script","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-bootstrap_script","()",""],["bootstrap_script=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-bootstrap_script-3D","(bootstrap)",""],["bootstrap_script=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-bootstrap_script-3D","(bootstrap)",""],["build","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-build","(options = {})",""],["build","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-build","(options = {})",""],["build","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-build","(options = {})",""],["build","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-build","(options = {})",""],["build_directory","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-build_directory","()",""],["build_directory","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-build_directory","()",""],["build_info","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-c-build_info","(type, data)",""],["build_info","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-c-build_info","(type, data)",""],["build_info","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-build_info","(reset = false)",""],["build_locations","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-build_locations","(reset = false)",""],["build_profiles","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-build_profiles","(reset = false)",""],["build_time","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-build_time","()",""],["build_time","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-build_time","()",""],["build_time=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-build_time-3D","(time)",""],["build_time=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-build_time-3D","(time)",""],["cache","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-cache","()",""],["cache","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-cache","()",""],["call","VagrantPlugins::CORL::Action::DeleteCache","VagrantPlugins/CORL/Action/DeleteCache.html#method-i-call","(env)",""],["call","VagrantPlugins::CORL::Action::InitKeys","VagrantPlugins/CORL/Action/InitKeys.html#method-i-call","(env)",""],["call","VagrantPlugins::CORL::Action::LinkNetwork","VagrantPlugins/CORL/Action/LinkNetwork.html#method-i-call","(env)",""],["call","VagrantPlugins::CORL::BaseAction","VagrantPlugins/CORL/BaseAction.html#method-i-call","(env)",""],["can_persist?","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-can_persist-3F","()",""],["check","CORL::Event::Puppet","CORL/Event/Puppet.html#method-i-check","(source)",""],["clean","VagrantPlugins::CORL::Provisioner::CORL","VagrantPlugins/CORL/Provisioner/CORL.html#method-i-clean","(options)",""],["clear","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-clear","(options = {})",""],["clear_config_cache","Vagrant::Config::Loader","Vagrant/Config/Loader.html#method-i-clear_config_cache","(sources = nil)",""],["cli","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-cli","()",""],["cli_capture","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-cli_capture","(cli_command, *args)",""],["cli_check","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-cli_check","(cli_command, *args)",""],["close_ssh_session","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-close_ssh_session","()",""],["command","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-command","()",""],["command","CORL::Vagrant","CORL/Vagrant.html#method-c-command","()",""],["command","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-command","(command, options = {})",""],["command=","CORL::Vagrant","CORL/Vagrant.html#method-c-command-3D","(command)",""],["compiler","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-compiler","()",""],["composite_resources","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-composite_resources","(default = {})",""],["composite_resources=","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-composite_resources-3D","(resources)",""],["compute","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-compute","()",""],["compute=","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-compute-3D","(compute)",""],["concatenate","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-concatenate","(components, capitalize = false)",""],["concatenate","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-concatenate","(components, capitalize = false, joiner = '::')",""],["config_initialized?","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-config_initialized-3F","()",""],["configuration","CORL::Facade","CORL/Facade.html#method-i-configuration","(options, provider = nil)",""],["configurations","CORL::Facade","CORL/Facade.html#method-i-configurations","(data, build_hash = false, keep_array = false)",""],["configure","CORL::Action::Authorize","CORL/Action/Authorize.html#method-i-configure","()",""],["configure","CORL::Action::Bootstrap","CORL/Action/Bootstrap.html#method-i-configure","()",""],["configure","CORL::Action::Destroy","CORL/Action/Destroy.html#method-i-configure","()",""],["configure","CORL::Action::Exec","CORL/Action/Exec.html#method-i-configure","()",""],["configure","CORL::Action::Image","CORL/Action/Image.html#method-i-configure","()",""],["configure","CORL::Action::Images","CORL/Action/Images.html#method-i-configure","()",""],["configure","CORL::Action::Keypair","CORL/Action/Keypair.html#method-i-configure","()",""],["configure","CORL::Action::Lookup","CORL/Action/Lookup.html#method-i-configure","()",""],["configure","CORL::Action::Machines","CORL/Action/Machines.html#method-i-configure","()",""],["configure","CORL::Action::Provision","CORL/Action/Provision.html#method-i-configure","()",""],["configure","CORL::Action::Reboot","CORL/Action/Reboot.html#method-i-configure","()",""],["configure","CORL::Action::Regions","CORL/Action/Regions.html#method-i-configure","()",""],["configure","CORL::Action::Revoke","CORL/Action/Revoke.html#method-i-configure","()",""],["configure","CORL::Action::Seed","CORL/Action/Seed.html#method-i-configure","()",""],["configure","CORL::Action::Spawn","CORL/Action/Spawn.html#method-i-configure","()",""],["configure","CORL::Action::Ssh","CORL/Action/Ssh.html#method-i-configure","()",""],["configure","CORL::Action::Start","CORL/Action/Start.html#method-i-configure","()",""],["configure","CORL::Action::Stop","CORL/Action/Stop.html#method-i-configure","()",""],["configure","CORL::Action::Vagrantfile","CORL/Action/Vagrantfile.html#method-i-configure","()",""],["configure","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-configure","()",""],["configure","VagrantPlugins::CORL::Provisioner::CORL","VagrantPlugins/CORL/Provisioner/CORL.html#method-i-configure","(root_config)",""],["configure_provisioner","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_provisioner","(network, node, machine, &code)",""],["configure_shares","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_shares","(node, machine)",""],["configure_ssh","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_ssh","(node, machine)",""],["configure_vagrant","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_vagrant","(network, vagrant)",""],["configure_vm","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_vm","(node, machine)",""],["connection_options","CORL::Node::Fog","CORL/Node/Fog.html#method-i-connection_options","()",""],["connection_options=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-connection_options-3D","(options)",""],["create","CORL::Machine::Aws","CORL/Machine/Aws.html#method-i-create","(options = {})",""],["create","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-create","(options = {}, &code)",""],["create","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-create","(options = {})",""],["create","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-create","(options = {})",""],["create","CORL::Node::Aws","CORL/Node/Aws.html#method-i-create","(options = {})",""],["create","CORL::Node::Fog","CORL/Node/Fog.html#method-i-create","(options = {})",""],["create","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-create","(options = {})",""],["create","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-create","(options = {})",""],["create","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-create","(options = {})",""],["create","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-create","(options = {})",""],["create_config","CORL::Node::Aws","CORL/Node/Aws.html#method-i-create_config","()",""],["create_config","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-create_config","()",""],["create_image","CORL::Machine::Aws","CORL/Machine/Aws.html#method-i-create_image","(options = {})",""],["create_image","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-create_image","(options = {}, &code)",""],["create_image","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-create_image","(name, options = {})",""],["create_image","CORL::Machine::Rackspace","CORL/Machine/Rackspace.html#method-i-create_image","(options = {})",""],["create_image","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-create_image","(options = {})",""],["create_image","CORL::Node::Fog","CORL/Node/Fog.html#method-i-create_image","(options = {})",""],["create_image","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-create_image","(options = {})",""],["create_image","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-create_image","(options = {})",""],["create_image","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-create_image","(options = {})",""],["create_machine","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-create_machine","(name, provider, options = {})",""],["created?","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-created-3F","()",""],["created?","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-created-3F","()",""],["created?","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-created-3F","()",""],["created?","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-created-3F","()",""],["custom_facts","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-custom_facts","()",""],["custom_facts=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-custom_facts-3D","(facts)",""],["debug","Hiera::Corl_logger","Hiera/Corl_logger.html#method-c-debug","(message)",""],["debug_lookup","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-debug_lookup","(config, property, value, label)",""],["debug_resource","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-debug_resource","(config, title, properties)",""],["default","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-default","(default = {})",""],["default=","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-default-3D","(default)",""],["defaults","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-defaults","(defaults, options = {})",""],["delete","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-delete","(keys, options = {})",""],["delete_attachments","CORL::Configuration::File","CORL/Configuration/File.html#method-i-delete_attachments","(ids, options = {})",""],["delete_attachments","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-delete_attachments","(type, ids, options = {})",""],["delete_attachments","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-delete_attachments","(ids, options = {})",""],["delete_keys","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-delete_keys","()",""],["destroy","CORL::Machine::Aws","CORL/Machine/Aws.html#method-i-destroy","(options = {})",""],["destroy","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-destroy","(options = {}, &code)",""],["destroy","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-destroy","(options = {})",""],["destroy","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-destroy","(options = {})",""],["destroy","CORL::Node::Fog","CORL/Node/Fog.html#method-i-destroy","(options = {})",""],["destroy","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-destroy","(options = {})",""],["destroy","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-destroy","(options = {})",""],["destroy","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-destroy","(options = {})",""],["directory","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-directory","()",""],["directory","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-directory","()",""],["directory","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-directory","()",""],["directory=","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-directory-3D","(directory)",""],["download","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-download","(remote_path, local_path, options = {}, &code)",""],["download","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-download","(remote_path, local_path, options = {})",""],["download","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-download","(remote_path, local_path, options = {}, &code)",""],["download","CORL::Node::Fog","CORL/Node/Fog.html#method-i-download","(remote_path, local_path, options = {})",""],["download","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-download","(remote_path, local_path, options = {})",""],["download","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-download","(remote_path, local_path, options = {})",""],["download","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-download","(remote_path, local_path, options = {})",""],["each_module","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-each_module","(options = {}, &code)",""],["each_node_config","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-each_node_config","(provider = nil)",""],["element","CORL::Event::Puppet","CORL/Event/Puppet.html#method-i-element","(default = '')",""],["element=","CORL::Event::Puppet","CORL/Event/Puppet.html#method-i-element-3D","(element)",""],["ensure_network","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-ensure_network","(network, &block)",""],["ensure_node","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-ensure_node","(node, &block)",""],["ensure_ready","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-ensure_ready","(options = {})",""],["ensure_security_group","CORL::Machine::Aws","CORL/Machine/Aws.html#method-i-ensure_security_group","(group_name, from_port, to_port = nil, options = {})",""],["env","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-env","()",""],["env","VagrantPlugins::CORL::Command::Launcher","VagrantPlugins/CORL/Command/Launcher.html#method-i-env","()",""],["exec","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-exec","(commands, options = {}, &code)",""],["exec","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-exec","(commands, options = {}, &code)",""],["exec","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-exec","(commands, options = {}, &code)",""],["exec","CORL::Node::Fog","CORL/Node/Fog.html#method-i-exec","(options = {})",""],["exec","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-exec","(options = {})",""],["exec","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-exec","(commands, options = {})",""],["exec","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-exec","(options = {})",""],["exec_options","CORL::Node::Fog","CORL/Node/Fog.html#method-i-exec_options","(name, options = {})",""],["exec_options","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-exec_options","(name, options = {})",""],["execute","CORL::Action::Authorize","CORL/Action/Authorize.html#method-i-execute","()",""],["execute","CORL::Action::Bootstrap","CORL/Action/Bootstrap.html#method-i-execute","()",""],["execute","CORL::Action::Build","CORL/Action/Build.html#method-i-execute","()",""],["execute","CORL::Action::Destroy","CORL/Action/Destroy.html#method-i-execute","()",""],["execute","CORL::Action::Exec","CORL/Action/Exec.html#method-i-execute","()",""],["execute","CORL::Action::Facts","CORL/Action/Facts.html#method-i-execute","()",""],["execute","CORL::Action::Image","CORL/Action/Image.html#method-i-execute","()",""],["execute","CORL::Action::Images","CORL/Action/Images.html#method-i-execute","()",""],["execute","CORL::Action::Ip","CORL/Action/Ip.html#method-i-execute","()",""],["execute","CORL::Action::Keypair","CORL/Action/Keypair.html#method-i-execute","()",""],["execute","CORL::Action::Lookup","CORL/Action/Lookup.html#method-i-execute","()",""],["execute","CORL::Action::Machines","CORL/Action/Machines.html#method-i-execute","()",""],["execute","CORL::Action::Provision","CORL/Action/Provision.html#method-i-execute","()",""],["execute","CORL::Action::Reboot","CORL/Action/Reboot.html#method-i-execute","()",""],["execute","CORL::Action::Regions","CORL/Action/Regions.html#method-i-execute","()",""],["execute","CORL::Action::Revoke","CORL/Action/Revoke.html#method-i-execute","()",""],["execute","CORL::Action::Seed","CORL/Action/Seed.html#method-i-execute","()",""],["execute","CORL::Action::Spawn","CORL/Action/Spawn.html#method-i-execute","()",""],["execute","CORL::Action::Ssh","CORL/Action/Ssh.html#method-i-execute","()",""],["execute","CORL::Action::Start","CORL/Action/Start.html#method-i-execute","()",""],["execute","CORL::Action::Stop","CORL/Action/Stop.html#method-i-execute","()",""],["execute","CORL::Action::Vagrantfile","CORL/Action/Vagrantfile.html#method-i-execute","()",""],["execute","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-execute","()",""],["execute","VagrantPlugins::CORL::Command::Launcher","VagrantPlugins/CORL/Command/Launcher.html#method-i-execute","()",""],["execute_remote","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-execute_remote","(node, network, op, data)",""],["extract_hostnames","CORL::Action::Spawn","CORL/Action/Spawn.html#method-i-extract_hostnames","(hostname)",""],["fact","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-fact","(name)",""],["facts","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-facts","()",""],["fetch_project","CORL::Configuration::File","CORL/Configuration/File.html#method-i-fetch_project","(options = {})",""],["filter_output","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-filter_output","(type, data)",""],["filter_output","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-filter_output","(type, data)",""],["finalize!","VagrantPlugins::CORL::Config::CORL","VagrantPlugins/CORL/Config/CORL.html#method-i-finalize-21","()",""],["find","Puppet::Indirector::Corl","Puppet/Indirector/Corl.html#method-i-find","(request)",""],["find_profiles","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-find_profiles","(reset = false)",""],["gateway","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-gateway","()",""],["gateway=","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-gateway-3D","(gateway)",""],["get_node","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-get_node","()",""],["group","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-group","()",""],["handle","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-handle","(msg)",""],["has_nodes?","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-has_nodes-3F","(provider = nil)",""],["hiera","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera","(reset = false)",""],["hiera_configuration","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera_configuration","()",""],["hiera_facts","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera_facts","()",""],["hiera_facts","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-hiera_facts","()",""],["hiera_override_dir","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera_override_dir","()",""],["hiera_override_dir","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-hiera_override_dir","()",""],["hiera_override_dir","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-hiera_override_dir","()",""],["home","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-home","()",""],["home","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-home","(env_var = 'HOME', reset = false)",""],["hostname","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-hostname","()",""],["hostname","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-hostname","()",""],["hostname","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-hostname","()",""],["id","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-id","(reset = false)",""],["id","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-id","(name = nil)",""],["ignore","CORL::Action::Bootstrap","CORL/Action/Bootstrap.html#method-i-ignore","()",""],["ignore","CORL::Action::Destroy","CORL/Action/Destroy.html#method-i-ignore","()",""],["ignore","CORL::Action::Image","CORL/Action/Image.html#method-i-ignore","()",""],["ignore","CORL::Action::Images","CORL/Action/Images.html#method-i-ignore","()",""],["ignore","CORL::Action::Keypair","CORL/Action/Keypair.html#method-i-ignore","()",""],["ignore","CORL::Action::Machines","CORL/Action/Machines.html#method-i-ignore","()",""],["ignore","CORL::Action::Reboot","CORL/Action/Reboot.html#method-i-ignore","()",""],["ignore","CORL::Action::Regions","CORL/Action/Regions.html#method-i-ignore","()",""],["ignore","CORL::Action::Spawn","CORL/Action/Spawn.html#method-i-ignore","()",""],["ignore","CORL::Action::Ssh","CORL/Action/Ssh.html#method-i-ignore","()",""],["ignore","CORL::Action::Start","CORL/Action/Start.html#method-i-ignore","()",""],["ignore","CORL::Action::Stop","CORL/Action/Stop.html#method-i-ignore","()",""],["ignore","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-ignore","(files)",""],["ignore","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-ignore","(files)",""],["image","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-image","()",""],["image","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-image","()",""],["image","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-image","()",""],["image","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-image","(reset = false)",""],["image=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-image-3D","(image)",""],["image_id","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-image_id","(image)",""],["image_id","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-image_id","(image)",""],["image_search_text","CORL::Node::Aws","CORL/Node/Aws.html#method-i-image_search_text","(image)",""],["image_search_text","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-image_search_text","(image)",""],["image_search_text","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-image_search_text","(image)",""],["image_search_text","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-image_search_text","(image)",""],["images","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-images","()",""],["images","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-images","()",""],["images","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-images","(search_terms = [], options = {})",""],["import","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-import","(files, options = {})",""],["import","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-import","(files, options = {})",""],["import","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-import","(properties, options = {})",""],["import","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-import","(properties, options = {})",""],["include","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-include","(resource_name, properties = {}, options = {})",""],["info","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-info","(default = {})",""],["info","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-info","(default = {})",""],["info=","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-info-3D","(info)",""],["info=","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-info-3D","(info)",""],["init_network","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-init_network","(path = nil)",""],["init_node","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-init_node","(node, options = {})",""],["init_puppet","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-init_puppet","(profiles)",""],["init_server","CORL::Machine::Aws","CORL/Machine/Aws.html#method-i-init_server","()",""],["init_server","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-init_server","()",""],["init_server","CORL::Machine::Rackspace","CORL/Machine/Rackspace.html#method-i-init_server","()",""],["init_shares","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-init_shares","()",""],["init_ssh","CORL::Machine::Aws","CORL/Machine/Aws.html#method-i-init_ssh","(ssh_port)",""],["init_ssh_session","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-init_ssh_session","(reset = false, tries = 5, sleep_secs = 5)",""],["initialized?","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-initialized-3F","(options = {})",""],["inspect","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-inspect","()",""],["key_config","CORL::Node::Fog","CORL/Node/Fog.html#method-i-key_config","()",""],["keypair","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair","(reset = false)",""],["keypair=","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair-3D","(options)",""],["keypair_clean","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair_clean","()",""],["keypair_config","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair_config","()",""],["keypair_ignore","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair_ignore","()",""],["keypair_name","CORL::Machine::Aws","CORL/Machine/Aws.html#method-i-keypair_name","()",""],["lib_path","CORL","CORL.html#method-c-lib_path","()",""],["load","CORL::Configuration::File","CORL/Configuration/File.html#method-i-load","(options = {})",""],["load","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-load","()",""],["load","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-load","()",""],["load","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-load","()",""],["load","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-load","(options = {})",""],["load","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-load","()",""],["load","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-load","(options = {})",""],["load_dir","Facter::Util::Loader","Facter/Util/Loader.html#method-i-load_dir","(dir)",""],["load_network","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-load_network","(directory)",""],["local?","CORL::Node::Local","CORL/Node/Local.html#method-i-local-3F","()",""],["local?","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-local-3F","()",""],["local_machine","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-local_machine","()",""],["local_machine=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-local_machine-3D","(local_machine)",""],["local_node","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-local_node","(require_new = false)",""],["localize","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-localize","()",""],["logger","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-logger","()",""],["lookup","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-lookup","(properties, default = nil, options = {})",""],["lookup","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-lookup","(property, default = nil, options = {})",""],["lookup","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-lookup","(property, default = nil, options = {})",""],["lookup","Hiera::Backend","Hiera/Backend.html#method-c-lookup","(key, default, scope, order_override, resolution_type)","<p>NOTE: This method is overridden so we can collect accumulated hiera\nparameters and their values on a …\n"],["lookup","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-lookup","(property, default = nil, options = {})",""],["lookup_array","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-lookup_array","(properties, default = [], options = {})",""],["lookup_array","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-lookup_array","(property, default = [], options = {})",""],["lookup_config","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-lookup_config","(property, default = nil, options = {})",""],["lookup_facts","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-lookup_facts","()",""],["lookup_hash","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-lookup_hash","(properties, default = {}, options = {})",""],["lookup_hash","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-lookup_hash","(property, default = {}, options = {})",""],["machine","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-machine","()",""],["machine=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-machine-3D","(machine)",""],["machine_config","CORL::Node::Aws","CORL/Node/Aws.html#method-i-machine_config","()",""],["machine_config","CORL::Node::Fog","CORL/Node/Fog.html#method-i-machine_config","()",""],["machine_config","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-machine_config","()",""],["machine_config","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-machine_config","()",""],["machine_config","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-machine_config","()",""],["machine_type","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-machine_type","()",""],["machine_type","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-machine_type","()",""],["machine_type","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-machine_type","()",""],["machine_type","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-machine_type","(reset = false)",""],["machine_type_id","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-machine_type_id","(machine_type)",""],["machine_type_id","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-machine_type_id","(machine_type)",""],["machine_types","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-machine_types","()",""],["machine_types","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-machine_types","()",""],["machine_types","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-machine_types","()",""],["machine_types","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-machine_types","()",""],["message","CORL::Event::Puppet","CORL/Event/Puppet.html#method-i-message","(default = '')",""],["message=","CORL::Event::Puppet","CORL/Event/Puppet.html#method-i-message-3D","(message)",""],["method_missing","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-method_missing","(method, *args, &code)",""],["namespace","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-namespace","()",""],["namevar","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-namevar","(type_name, resource_name)",""],["network","CORL::Facade","CORL/Facade.html#method-i-network","(name, options = {}, provider = nil)",""],["network","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-network","()",""],["network=","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-network-3D","(network)",""],["network_settings","CORL::Mixin::Macro::NetworkSettings","CORL/Mixin/Macro/NetworkSettings.html#method-i-network_settings","(_type)",""],["networks","CORL::Facade","CORL/Facade.html#method-i-networks","(data, build_hash = false, keep_array = false)",""],["new","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-c-new","(group, info, title, properties = {})",""],["new","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-c-new","(type_info, default = {})",""],["new","Puppet::Indirector::Corl","Puppet/Indirector/Corl.html#method-c-new","(*args)",""],["new","VagrantPlugins::CORL::BaseAction","VagrantPlugins/CORL/BaseAction.html#method-c-new","(app, env)",""],["new","VagrantPlugins::CORL::Config::CORL","VagrantPlugins/CORL/Config/CORL.html#method-c-new","()",""],["new","VagrantPlugins::CORL::Provisioner::CORL","VagrantPlugins/CORL/Provisioner/CORL.html#method-c-new","(machine, config)",""],["new_machine","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-new_machine","(id)",""],["node","CORL::Facade","CORL/Facade.html#method-i-node","(name, options = {}, provider = nil)",""],["node","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-node","()",""],["node=","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-node-3D","(node)",""],["node_by_ip","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-node_by_ip","(public_ip, require_new = false)",""],["node_config","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-node_config","()",""],["node_exec","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-node_exec","()",""],["node_groups","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-node_groups","()",""],["node_ignore","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-node_ignore","()",""],["node_info","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-node_info","(references, default_provider = nil)",""],["nodes","CORL::Facade","CORL/Facade.html#method-i-nodes","(data, build_hash = false, keep_array = false)",""],["nodes_by_reference","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-nodes_by_reference","(references, default_provider = nil, require_new = false)",""],["normalize","CORL::Configuration::File","CORL/Configuration/File.html#method-i-normalize","(reload)",""],["normalize","CORL::Event::Puppet","CORL/Event/Puppet.html#method-i-normalize","(reload)",""],["normalize","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-normalize","(reload)",""],["normalize","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-normalize","(data, override = nil, options = {})",""],["normalize","CORL::Network::Default","CORL/Network/Default.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::Aws","CORL/Node/Aws.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::Fog","CORL/Node/Fog.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::Local","CORL/Node/Local.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-normalize","(reload)",""],["normalize","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-normalize","(reload)",""],["normalize","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-normalize","(type_name, resources, options = {})",""],["normalize","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-normalize","(reload)",""],["normalize","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-normalize","(reload)",""],["normalize","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-normalize","(reload)",""],["normalize","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-normalize","(reload)",""],["normalize","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-normalize","(reload)",""],["operation","CORL::Event::Puppet","CORL/Event/Puppet.html#method-i-operation","(default = '')",""],["operation=","CORL::Event::Puppet","CORL/Event/Puppet.html#method-i-operation-3D","(operation)",""],["packages","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-packages","()",""],["parse_params","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-parse_params","(data)",""],["private_ip","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-private_ip","()",""],["private_ip","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-private_ip","()",""],["private_ip","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-private_ip","()",""],["private_ip","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-private_ip","(reset = false)",""],["private_key","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-private_key","()",""],["private_key=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-private_key-3D","(private_key)",""],["process","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-process","(options = {})",""],["profile_id","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-profile_id","(package_name, profile_name)",""],["profiles","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-profiles","()",""],["profiles","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-profiles","()",""],["profiles=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-profiles-3D","(profiles)",""],["project","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-project","()",""],["provision","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-provision","(profiles, options = {})",""],["provision","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-provision","(profiles, options = {})",""],["provision","VagrantPlugins::CORL::Provisioner::CORL","VagrantPlugins/CORL/Provisioner/CORL.html#method-i-provision","()",""],["provisioner","CORL::Facade","CORL/Facade.html#method-i-provisioner","(options, provider = nil)",""],["provisioner_info","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-provisioner_info","()",""],["provisioners","CORL::Facade","CORL/Facade.html#method-i-provisioners","(data, build_hash = false, keep_array = false)",""],["provisioners","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-provisioners","()",""],["public_ip","CORL::Facade","CORL/Facade.html#method-i-public_ip","()",""],["public_ip","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-public_ip","()",""],["public_ip","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-public_ip","()",""],["public_ip","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-public_ip","()",""],["public_ip","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-public_ip","(reset = false)",""],["public_key","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-public_key","()",""],["public_key=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-public_key-3D","(public_key)",""],["ready","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-ready","(default = false)",""],["refresh_config","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-refresh_config","()",""],["region","CORL::Node::Fog","CORL/Node/Fog.html#method-i-region","()",""],["region=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-region-3D","(region)",""],["regions","CORL::Node::Aws","CORL/Node/Aws.html#method-i-regions","()",""],["regions","CORL::Node::Fog","CORL/Node/Fog.html#method-i-regions","()",""],["regions","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-regions","()",""],["register","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-register","(options = {})",""],["register","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-register","(directory, config, &code)","<p>Gateway CORL configurator for Vagrant.\n"],["register","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-register","(options = {})",""],["register_plugins","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-register_plugins","(options = {})",""],["reload","CORL::Machine::Aws","CORL/Machine/Aws.html#method-i-reload","(options = {})",""],["reload","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-reload","(options = {}, &code)",""],["reload","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-reload","(options = {})",""],["reload","CORL::Machine::Rackspace","CORL/Machine/Rackspace.html#method-i-reload","(options = {})",""],["reload","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-reload","(options = {})",""],["reload","CORL::Node::Fog","CORL/Node/Fog.html#method-i-reload","(options = {})",""],["reload","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-reload","(options = {})",""],["reload","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-reload","(options = {})",""],["reload","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-reload","(options = {})",""],["reload","Vagrant::Vagrantfile","Vagrant/Vagrantfile.html#method-i-reload","()",""],["remote","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-remote","(name)",""],["remote","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-remote","(name)",""],["remove","CORL::Configuration::File","CORL/Configuration/File.html#method-i-remove","(options = {})",""],["remove","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-remove","(options = {})",""],["remove_plugin","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-remove_plugin","()",""],["remove_plugin","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-remove_plugin","()",""],["remove_plugin","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-remove_plugin","()",""],["render","CORL::Event::Puppet","CORL/Event/Puppet.html#method-i-render","()",""],["render","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-c-render","(resource_info, options = {})",""],["render","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-render","(options = {})",""],["render_assignment","CORL::Template::Environment","CORL/Template/Environment.html#method-i-render_assignment","(name, value)",""],["render_image","CORL::Node::Aws","CORL/Node/Aws.html#method-i-render_image","(image)",""],["render_image","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-render_image","(image)",""],["render_image","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-render_image","(image)",""],["render_image","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-render_image","(image)",""],["render_machine_type","CORL::Node::Aws","CORL/Node/Aws.html#method-i-render_machine_type","(machine_type)",""],["render_machine_type","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-render_machine_type","(machine_type)",""],["render_machine_type","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-render_machine_type","(machine_type)",""],["render_machine_type","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-render_machine_type","(machine_type)",""],["render_name","CORL::Template::Environment","CORL/Template/Environment.html#method-i-render_name","(name)",""],["render_processed","CORL::Template::Environment","CORL/Template/Environment.html#method-i-render_processed","(data)",""],["render_value","CORL::Template::Environment","CORL/Template/Environment.html#method-i-render_value","(value)",""],["resources","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-resources","(default = {})",""],["resources=","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-resources-3D","(resources)",""],["router","CORL::Configuration::File","CORL/Configuration/File.html#method-i-router","()",""],["run","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-run","(action, options = {}, symbolize_keys = true)",""],["run","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-run","()",""],["running?","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-running-3F","()",""],["running?","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-running-3F","()",""],["running?","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-running-3F","()",""],["running?","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-running-3F","()",""],["save","CORL::Configuration::File","CORL/Configuration/File.html#method-i-save","(options = {})",""],["save","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-save","(options = {})",""],["save","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-save","(options = {})",""],["save","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-save","(options = {})",""],["save","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-save","(options = {})",""],["scope","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-scope","()",""],["search","CORL::Configuration::File","CORL/Configuration/File.html#method-i-search","()",""],["search_files","CORL::Configuration::File","CORL/Configuration/File.html#method-i-search_files","()",""],["select_largest","CORL::Configuration::File","CORL/Configuration/File.html#method-i-select_largest","(router)",""],["send_files","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-send_files","(local_path, remote_path, files = nil, permission = '0644', &code)",""],["separate","CORL::Configuration::File","CORL/Configuration/File.html#method-i-separate","()","<p>properties = values\n<p>to\n<p>file_data[key…] = config\n"],["server","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-server","()",""],["server","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-server","()",""],["server=","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-server-3D","(id)",""],["server=","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-server-3D","(id)",""],["set","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-set","(keys, value = '', options = {})",""],["set_command","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-set_command","()",""],["set_connection","CORL::Machine::Aws","CORL/Machine/Aws.html#method-i-set_connection","()",""],["set_connection","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-set_connection","()",""],["set_connection","CORL::Machine::Rackspace","CORL/Machine/Rackspace.html#method-i-set_connection","()",""],["set_location","CORL::Configuration::File","CORL/Configuration/File.html#method-i-set_location","(directory)",""],["set_location","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-set_location","(directory)",""],["set_remote","Nucleon::Plugin::Configuration","Nucleon/Plugin/Configuration.html#method-i-set_remote","(name, location)",""],["set_remote","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-set_remote","(name, location)",""],["setup","Fog::Compute::AWS::Server","Fog/Compute/AWS/Server.html#method-i-setup","(credentials = {})",""],["setup","Fog::Compute::RackspaceV2::Server","Fog/Compute/RackspaceV2/Server.html#method-i-setup","(credentials = {})",""],["shares","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-shares","()",""],["shares=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-shares-3D","(shares)",""],["ssh","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-ssh","()",""],["ssh=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-ssh-3D","(ssh)",""],["ssh_download","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_download","(remote_path, local_path, options = {}, &code)",""],["ssh_exec","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_exec","(commands, options = {}, &code)",""],["ssh_path","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-ssh_path","(home_env_var = 'HOME', reset = false)",""],["ssh_port","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-ssh_port","()",""],["ssh_port=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-ssh_port-3D","(ssh_port)",""],["ssh_terminal","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_terminal","(user, options = {})",""],["ssh_upload","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_upload","(local_path, remote_path, options = {}, &code)",""],["ssh_wait_for_ready","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-ssh_wait_for_ready","()",""],["ssh_wait_for_ready","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_wait_for_ready","()",""],["start","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-start","(options = {})",""],["start","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-start","(options = {})",""],["start","CORL::Node::Aws","CORL/Node/Aws.html#method-i-start","(options = {})",""],["start","CORL::Node::Fog","CORL/Node/Fog.html#method-i-start","(options = {})",""],["start","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-start","(options = {})",""],["start","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-start","(options = {})",""],["start","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-start","(options = {})",""],["start","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-start","(options = {})",""],["start_machine","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-start_machine","(options)",""],["state","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-state","()",""],["state","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-state","()",""],["state","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-state","()",""],["state","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-state","(reset = false)",""],["state","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-state","()",""],["state","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-state","(reset = false)",""],["status","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-c-status","()",""],["stop","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-stop","(options = {})",""],["stop","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-stop","(options = {})",""],["stop","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-stop","(options = {})",""],["stop","CORL::Node::Fog","CORL/Node/Fog.html#method-i-stop","(options = {})",""],["stop","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-stop","(options = {})",""],["stop","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-stop","(options = {})",""],["stop","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-stop","(options = {})",""],["suitable?","Hiera::Corl_logger","Hiera/Corl_logger.html#method-c-suitable-3F","()",""],["supported_profiles","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-supported_profiles","(profile_names = nil)",""],["synopsis","VagrantPlugins::CORL::Command::Launcher","VagrantPlugins/CORL/Command/Launcher.html#method-c-synopsis","()",""],["tag","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-tag","(tags, append = true)",""],["terminal","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-terminal","(user, options = {})",""],["terminal","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-terminal","(user, options = {})",""],["terminal","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-terminal","(user, options = {})",""],["terminal","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-terminal","(user, options = {})",""],["terminal","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-terminal","(options = {})",""],["test_node","Nucleon::Plugin::Network","Nucleon/Plugin/Network.html#method-i-test_node","(provider, options = {})",""],["title","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-title","(default = '')",""],["title=","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-title-3D","(info)",""],["to_name","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-to_name","(name)",""],["translate","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-translate","(options = {})",""],["translate","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-translate","(resources, options = {})",""],["translate","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-c-translate","(data)",""],["translate","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-c-translate","(data)",""],["translate_reference","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-c-translate_reference","(reference)",""],["translate_reference","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-translate_reference","(reference)",""],["translate_reference","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-c-translate_reference","(reference)",""],["translate_reference","Nucleon::Plugin::Provisioner","Nucleon/Plugin/Provisioner.html#method-i-translate_reference","(reference)",""],["translate_resource_refs","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-translate_resource_refs","(resource_refs, options = {})",""],["translate_state","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-translate_state","(state)",""],["type_info","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-type_info","(type_name, options = {})",""],["type_name","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-type_name","(value)",""],["update_project","CORL::Configuration::File","CORL/Configuration/File.html#method-i-update_project","(files = [], options = {})",""],["upload","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-upload","(local_path, remote_path, options = {}, &code)",""],["upload","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-upload","(local_path, remote_path, options = {})",""],["upload","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-upload","(local_path, remote_path, options = {}, &code)",""],["upload","CORL::Node::Fog","CORL/Node/Fog.html#method-i-upload","(local_path, remote_path, options = {})",""],["upload","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-upload","(local_path, remote_path, options = {})",""],["upload","Nucleon::Plugin::Machine","Nucleon/Plugin/Machine.html#method-i-upload","(local_path, remote_path, options = {})",""],["upload","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-upload","(local_path, remote_path, options = {})",""],["usable_image?","CORL::Node::Aws","CORL/Node/Aws.html#method-i-usable_image-3F","(image)",""],["usable_image?","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-usable_image-3F","(image)",""],["usable_image?","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-usable_image-3F","(image)",""],["user","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-user","()",""],["user=","Nucleon::Plugin::Node","Nucleon/Plugin/Node.html#method-i-user-3D","(user)",""],["vagrant?","CORL::Facade","CORL/Facade.html#method-i-vagrant-3F","()",""],["vagrant_config","CORL::Facade","CORL/Facade.html#method-i-vagrant_config","(directory, config, &code)",""],["vagrant_config_loaded?","CORL::Facade","CORL/Facade.html#method-i-vagrant_config_loaded-3F","()",""],["validate","CORL::Plugin::CloudAction","CORL/Plugin/CloudAction.html#method-i-validate","(node, network)",""],["validate","VagrantPlugins::CORL::Config::CORL","VagrantPlugins/CORL/Config/CORL.html#method-i-validate","(machine)",""],["vm","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-vm","()",""],["vm=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-vm-3D","(vm)",""],["vm_machine","VagrantPlugins::CORL::Command::Launcher","VagrantPlugins/CORL/Command/Launcher.html#method-i-vm_machine","(name, provider = nil, refresh = false)",""],["warn","Hiera::Corl_logger","Hiera/Corl_logger.html#method-c-warn","(message)",""],["README","","README_rdoc.html","","<p>## Welcome to CORL (Coral Orchestration and Research Library)\n<p>CORL is a cloud application framework and …\n"]]}}
@@ -0,0 +1,228 @@
1
+ Searcher = function(data) {
2
+ this.data = data;
3
+ this.handlers = [];
4
+ }
5
+
6
+ Searcher.prototype = new function() {
7
+ // search is performed in chunks of 1000 for non-blocking user input
8
+ var CHUNK_SIZE = 1000;
9
+ // do not try to find more than 100 results
10
+ var MAX_RESULTS = 100;
11
+ var huid = 1;
12
+ var suid = 1;
13
+ var runs = 0;
14
+
15
+ this.find = function(query) {
16
+ var queries = splitQuery(query);
17
+ var regexps = buildRegexps(queries);
18
+ var highlighters = buildHilighters(queries);
19
+ var state = { from: 0, pass: 0, limit: MAX_RESULTS, n: suid++};
20
+ var _this = this;
21
+
22
+ this.currentSuid = state.n;
23
+
24
+ if (!query) return;
25
+
26
+ var run = function() {
27
+ // stop current search thread if new search started
28
+ if (state.n != _this.currentSuid) return;
29
+
30
+ var results =
31
+ performSearch(_this.data, regexps, queries, highlighters, state);
32
+ var hasMore = (state.limit > 0 && state.pass < 4);
33
+
34
+ triggerResults.call(_this, results, !hasMore);
35
+ if (hasMore) {
36
+ setTimeout(run, 2);
37
+ }
38
+ runs++;
39
+ };
40
+ runs = 0;
41
+
42
+ // start search thread
43
+ run();
44
+ }
45
+
46
+ /* ----- Events ------ */
47
+ this.ready = function(fn) {
48
+ fn.huid = huid;
49
+ this.handlers.push(fn);
50
+ }
51
+
52
+ /* ----- Utilities ------ */
53
+ function splitQuery(query) {
54
+ return jQuery.grep(query.split(/(\s+|::?|\(\)?)/), function(string) {
55
+ return string.match(/\S/)
56
+ });
57
+ }
58
+
59
+ function buildRegexps(queries) {
60
+ return jQuery.map(queries, function(query) {
61
+ return new RegExp(query.replace(/(.)/g, '([$1])([^$1]*?)'), 'i')
62
+ });
63
+ }
64
+
65
+ function buildHilighters(queries) {
66
+ return jQuery.map(queries, function(query) {
67
+ return jQuery.map(query.split(''), function(l, i) {
68
+ return '\u0001$' + (i*2+1) + '\u0002$' + (i*2+2);
69
+ }).join('');
70
+ });
71
+ }
72
+
73
+ // function longMatchRegexp(index, longIndex, regexps) {
74
+ // for (var i = regexps.length - 1; i >= 0; i--){
75
+ // if (!index.match(regexps[i]) && !longIndex.match(regexps[i])) return false;
76
+ // };
77
+ // return true;
78
+ // }
79
+
80
+
81
+ /* ----- Mathchers ------ */
82
+
83
+ /*
84
+ * This record matches if the index starts with queries[0] and the record
85
+ * matches all of the regexps
86
+ */
87
+ function matchPassBeginning(index, longIndex, queries, regexps) {
88
+ if (index.indexOf(queries[0]) != 0) return false;
89
+ for (var i=1, l = regexps.length; i < l; i++) {
90
+ if (!index.match(regexps[i]) && !longIndex.match(regexps[i]))
91
+ return false;
92
+ };
93
+ return true;
94
+ }
95
+
96
+ /*
97
+ * This record matches if the longIndex starts with queries[0] and the
98
+ * longIndex matches all of the regexps
99
+ */
100
+ function matchPassLongIndex(index, longIndex, queries, regexps) {
101
+ if (longIndex.indexOf(queries[0]) != 0) return false;
102
+ for (var i=1, l = regexps.length; i < l; i++) {
103
+ if (!longIndex.match(regexps[i]))
104
+ return false;
105
+ };
106
+ return true;
107
+ }
108
+
109
+ /*
110
+ * This record matches if the index contains queries[0] and the record
111
+ * matches all of the regexps
112
+ */
113
+ function matchPassContains(index, longIndex, queries, regexps) {
114
+ if (index.indexOf(queries[0]) == -1) return false;
115
+ for (var i=1, l = regexps.length; i < l; i++) {
116
+ if (!index.match(regexps[i]) && !longIndex.match(regexps[i]))
117
+ return false;
118
+ };
119
+ return true;
120
+ }
121
+
122
+ /*
123
+ * This record matches if regexps[0] matches the index and the record
124
+ * matches all of the regexps
125
+ */
126
+ function matchPassRegexp(index, longIndex, queries, regexps) {
127
+ if (!index.match(regexps[0])) return false;
128
+ for (var i=1, l = regexps.length; i < l; i++) {
129
+ if (!index.match(regexps[i]) && !longIndex.match(regexps[i]))
130
+ return false;
131
+ };
132
+ return true;
133
+ }
134
+
135
+
136
+ /* ----- Highlighters ------ */
137
+ function highlightRegexp(info, queries, regexps, highlighters) {
138
+ var result = createResult(info);
139
+ for (var i=0, l = regexps.length; i < l; i++) {
140
+ result.title = result.title.replace(regexps[i], highlighters[i]);
141
+ result.namespace = result.namespace.replace(regexps[i], highlighters[i]);
142
+ };
143
+ return result;
144
+ }
145
+
146
+ function hltSubstring(string, pos, length) {
147
+ return string.substring(0, pos) + '\u0001' + string.substring(pos, pos + length) + '\u0002' + string.substring(pos + length);
148
+ }
149
+
150
+ function highlightQuery(info, queries, regexps, highlighters) {
151
+ var result = createResult(info);
152
+ var pos = 0;
153
+ var lcTitle = result.title.toLowerCase();
154
+
155
+ pos = lcTitle.indexOf(queries[0]);
156
+ if (pos != -1) {
157
+ result.title = hltSubstring(result.title, pos, queries[0].length);
158
+ }
159
+
160
+ result.namespace = result.namespace.replace(regexps[0], highlighters[0]);
161
+ for (var i=1, l = regexps.length; i < l; i++) {
162
+ result.title = result.title.replace(regexps[i], highlighters[i]);
163
+ result.namespace = result.namespace.replace(regexps[i], highlighters[i]);
164
+ };
165
+ return result;
166
+ }
167
+
168
+ function createResult(info) {
169
+ var result = {};
170
+ result.title = info[0];
171
+ result.namespace = info[1];
172
+ result.path = info[2];
173
+ result.params = info[3];
174
+ result.snippet = info[4];
175
+ return result;
176
+ }
177
+
178
+ /* ----- Searching ------ */
179
+ function performSearch(data, regexps, queries, highlighters, state) {
180
+ var searchIndex = data.searchIndex;
181
+ var longSearchIndex = data.longSearchIndex;
182
+ var info = data.info;
183
+ var result = [];
184
+ var i = state.from;
185
+ var l = searchIndex.length;
186
+ var togo = CHUNK_SIZE;
187
+ var matchFunc, hltFunc;
188
+
189
+ while (state.pass < 4 && state.limit > 0 && togo > 0) {
190
+ if (state.pass == 0) {
191
+ matchFunc = matchPassBeginning;
192
+ hltFunc = highlightQuery;
193
+ } else if (state.pass == 1) {
194
+ matchFunc = matchPassLongIndex;
195
+ hltFunc = highlightQuery;
196
+ } else if (state.pass == 2) {
197
+ matchFunc = matchPassContains;
198
+ hltFunc = highlightQuery;
199
+ } else if (state.pass == 3) {
200
+ matchFunc = matchPassRegexp;
201
+ hltFunc = highlightRegexp;
202
+ }
203
+
204
+ for (; togo > 0 && i < l && state.limit > 0; i++, togo--) {
205
+ if (info[i].n == state.n) continue;
206
+ if (matchFunc(searchIndex[i], longSearchIndex[i], queries, regexps)) {
207
+ info[i].n = state.n;
208
+ result.push(hltFunc(info[i], queries, regexps, highlighters));
209
+ state.limit--;
210
+ }
211
+ };
212
+ if (searchIndex.length <= i) {
213
+ state.pass++;
214
+ i = state.from = 0;
215
+ } else {
216
+ state.from = i;
217
+ }
218
+ }
219
+ return result;
220
+ }
221
+
222
+ function triggerResults(results, isLast) {
223
+ jQuery.each(this.handlers, function(i, fn) {
224
+ fn.call(this, results, isLast)
225
+ })
226
+ }
227
+ }
228
+