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,480 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>module Puppet::Parser::Functions - corl 0.4.29</title>
8
+
9
+ <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="module">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../../index.html">Home</a>
28
+ <a href="../../table_of_contents.html#classes">Classes</a>
29
+ <a href="../../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ <li>lib/puppet/parser/functions/corl_include.rb
51
+ <li>lib/puppet/parser/functions/corl_initialize.rb
52
+ <li>lib/puppet/parser/functions/corl_merge.rb
53
+ <li>lib/puppet/parser/functions/corl_resources.rb
54
+ <li>lib/puppet/parser/functions/ensure.rb
55
+ <li>lib/puppet/parser/functions/file_exists.rb
56
+ <li>lib/puppet/parser/functions/global_array.rb
57
+ <li>lib/puppet/parser/functions/global_hash.rb
58
+ <li>lib/puppet/parser/functions/global_options.rb
59
+ <li>lib/puppet/parser/functions/global_param.rb
60
+ <li>lib/puppet/parser/functions/interpolate.rb
61
+ <li>lib/puppet/parser/functions/is_false.rb
62
+ <li>lib/puppet/parser/functions/is_true.rb
63
+ <li>lib/puppet/parser/functions/module_array.rb
64
+ <li>lib/puppet/parser/functions/module_hash.rb
65
+ <li>lib/puppet/parser/functions/module_options.rb
66
+ <li>lib/puppet/parser/functions/module_param.rb
67
+ <li>lib/puppet/parser/functions/name.rb
68
+ <li>lib/puppet/parser/functions/render.rb
69
+ <li>lib/puppet/parser/functions/value.rb
70
+ </ul>
71
+ </nav>
72
+
73
+
74
+ </div>
75
+
76
+ <div id="class-metadata">
77
+
78
+
79
+
80
+
81
+ </div>
82
+
83
+ <div id="project-metadata">
84
+ <nav id="fileindex-section" class="section project-section">
85
+ <h3 class="section-header">Pages</h3>
86
+
87
+ <ul>
88
+
89
+ <li class="file"><a href="../../README_rdoc.html">README</a>
90
+
91
+ </ul>
92
+ </nav>
93
+
94
+ <nav id="classindex-section" class="section project-section">
95
+ <h3 class="section-header">Class and Module Index</h3>
96
+
97
+ <ul class="link-list">
98
+
99
+ <li><a href="../../CORL.html">CORL</a>
100
+
101
+ <li><a href="../../CORL/Action.html">CORL::Action</a>
102
+
103
+ <li><a href="../../CORL/Action/Authorize.html">CORL::Action::Authorize</a>
104
+
105
+ <li><a href="../../CORL/Action/Bootstrap.html">CORL::Action::Bootstrap</a>
106
+
107
+ <li><a href="../../CORL/Action/Build.html">CORL::Action::Build</a>
108
+
109
+ <li><a href="../../CORL/Action/Destroy.html">CORL::Action::Destroy</a>
110
+
111
+ <li><a href="../../CORL/Action/Exec.html">CORL::Action::Exec</a>
112
+
113
+ <li><a href="../../CORL/Action/Facts.html">CORL::Action::Facts</a>
114
+
115
+ <li><a href="../../CORL/Action/Image.html">CORL::Action::Image</a>
116
+
117
+ <li><a href="../../CORL/Action/Images.html">CORL::Action::Images</a>
118
+
119
+ <li><a href="../../CORL/Action/Ip.html">CORL::Action::Ip</a>
120
+
121
+ <li><a href="../../CORL/Action/Keypair.html">CORL::Action::Keypair</a>
122
+
123
+ <li><a href="../../CORL/Action/Lookup.html">CORL::Action::Lookup</a>
124
+
125
+ <li><a href="../../CORL/Action/Machines.html">CORL::Action::Machines</a>
126
+
127
+ <li><a href="../../CORL/Action/Provision.html">CORL::Action::Provision</a>
128
+
129
+ <li><a href="../../CORL/Action/Reboot.html">CORL::Action::Reboot</a>
130
+
131
+ <li><a href="../../CORL/Action/Regions.html">CORL::Action::Regions</a>
132
+
133
+ <li><a href="../../CORL/Action/Revoke.html">CORL::Action::Revoke</a>
134
+
135
+ <li><a href="../../CORL/Action/Seed.html">CORL::Action::Seed</a>
136
+
137
+ <li><a href="../../CORL/Action/Spawn.html">CORL::Action::Spawn</a>
138
+
139
+ <li><a href="../../CORL/Action/Ssh.html">CORL::Action::Ssh</a>
140
+
141
+ <li><a href="../../CORL/Action/Start.html">CORL::Action::Start</a>
142
+
143
+ <li><a href="../../CORL/Action/Stop.html">CORL::Action::Stop</a>
144
+
145
+ <li><a href="../../CORL/Action/Vagrantfile.html">CORL::Action::Vagrantfile</a>
146
+
147
+ <li><a href="../../CORL/Configuration.html">CORL::Configuration</a>
148
+
149
+ <li><a href="../../CORL/Configuration/File.html">CORL::Configuration::File</a>
150
+
151
+ <li><a href="../../CORL/Errors.html">CORL::Errors</a>
152
+
153
+ <li><a href="../../CORL/Event.html">CORL::Event</a>
154
+
155
+ <li><a href="../../CORL/Event/Puppet.html">CORL::Event::Puppet</a>
156
+
157
+ <li><a href="../../CORL/Facade.html">CORL::Facade</a>
158
+
159
+ <li><a href="../../CORL/Machine.html">CORL::Machine</a>
160
+
161
+ <li><a href="../../CORL/Machine/Aws.html">CORL::Machine::Aws</a>
162
+
163
+ <li><a href="../../CORL/Machine/Fog.html">CORL::Machine::Fog</a>
164
+
165
+ <li><a href="../../CORL/Machine/Physical.html">CORL::Machine::Physical</a>
166
+
167
+ <li><a href="../../CORL/Machine/Rackspace.html">CORL::Machine::Rackspace</a>
168
+
169
+ <li><a href="../../CORL/Machine/Vagrant.html">CORL::Machine::Vagrant</a>
170
+
171
+ <li><a href="../../CORL/Mixin.html">CORL::Mixin</a>
172
+
173
+ <li><a href="../../CORL/Mixin/Action.html">CORL::Mixin::Action</a>
174
+
175
+ <li><a href="../../CORL/Mixin/Action/Keypair.html">CORL::Mixin::Action::Keypair</a>
176
+
177
+ <li><a href="../../CORL/Mixin/Lookup.html">CORL::Mixin::Lookup</a>
178
+
179
+ <li><a href="../../CORL/Mixin/Machine.html">CORL::Mixin::Machine</a>
180
+
181
+ <li><a href="../../CORL/Mixin/Machine/SSH.html">CORL::Mixin::Machine::SSH</a>
182
+
183
+ <li><a href="../../CORL/Mixin/Macro.html">CORL::Mixin::Macro</a>
184
+
185
+ <li><a href="../../CORL/Mixin/Macro/NetworkSettings.html">CORL::Mixin::Macro::NetworkSettings</a>
186
+
187
+ <li><a href="../../CORL/Network.html">CORL::Network</a>
188
+
189
+ <li><a href="../../CORL/Network/Default.html">CORL::Network::Default</a>
190
+
191
+ <li><a href="../../CORL/Node.html">CORL::Node</a>
192
+
193
+ <li><a href="../../CORL/Node/Aws.html">CORL::Node::Aws</a>
194
+
195
+ <li><a href="../../CORL/Node/Fog.html">CORL::Node::Fog</a>
196
+
197
+ <li><a href="../../CORL/Node/Local.html">CORL::Node::Local</a>
198
+
199
+ <li><a href="../../CORL/Node/Rackspace.html">CORL::Node::Rackspace</a>
200
+
201
+ <li><a href="../../CORL/Node/Vagrant.html">CORL::Node::Vagrant</a>
202
+
203
+ <li><a href="../../CORL/Plugin.html">CORL::Plugin</a>
204
+
205
+ <li><a href="../../CORL/Plugin/CloudAction.html">CORL::Plugin::CloudAction</a>
206
+
207
+ <li><a href="../../CORL/Provisioner.html">CORL::Provisioner</a>
208
+
209
+ <li><a href="../../CORL/Provisioner/Puppetnode.html">CORL::Provisioner::Puppetnode</a>
210
+
211
+ <li><a href="../../CORL/Template.html">CORL::Template</a>
212
+
213
+ <li><a href="../../CORL/Template/Environment.html">CORL::Template::Environment</a>
214
+
215
+ <li><a href="../../CORL/Util.html">CORL::Util</a>
216
+
217
+ <li><a href="../../CORL/Util/Puppet.html">CORL::Util::Puppet</a>
218
+
219
+ <li><a href="../../CORL/Util/Puppet/Resource.html">CORL::Util::Puppet::Resource</a>
220
+
221
+ <li><a href="../../CORL/Util/Puppet/ResourceGroup.html">CORL::Util::Puppet::ResourceGroup</a>
222
+
223
+ <li><a href="../../CORL/Vagrant.html">CORL::Vagrant</a>
224
+
225
+ <li><a href="../../CORL/Vagrant/Config.html">CORL::Vagrant::Config</a>
226
+
227
+ <li><a href="../../VagrantPlugins.html">VagrantPlugins</a>
228
+
229
+ <li><a href="../../VagrantPlugins/CORL.html">VagrantPlugins::CORL</a>
230
+
231
+ <li><a href="../../VagrantPlugins/CORL/Action.html">VagrantPlugins::CORL::Action</a>
232
+
233
+ <li><a href="../../VagrantPlugins/CORL/Action/DeleteCache.html">VagrantPlugins::CORL::Action::DeleteCache</a>
234
+
235
+ <li><a href="../../VagrantPlugins/CORL/Action/InitKeys.html">VagrantPlugins::CORL::Action::InitKeys</a>
236
+
237
+ <li><a href="../../VagrantPlugins/CORL/Action/LinkNetwork.html">VagrantPlugins::CORL::Action::LinkNetwork</a>
238
+
239
+ <li><a href="../../VagrantPlugins/CORL/BaseAction.html">VagrantPlugins::CORL::BaseAction</a>
240
+
241
+ <li><a href="../../VagrantPlugins/CORL/Command.html">VagrantPlugins::CORL::Command</a>
242
+
243
+ <li><a href="../../VagrantPlugins/CORL/Command/Launcher.html">VagrantPlugins::CORL::Command::Launcher</a>
244
+
245
+ <li><a href="../../VagrantPlugins/CORL/Config.html">VagrantPlugins::CORL::Config</a>
246
+
247
+ <li><a href="../../VagrantPlugins/CORL/Config/CORL.html">VagrantPlugins::CORL::Config::CORL</a>
248
+
249
+ <li><a href="../../VagrantPlugins/CORL/Plugin.html">VagrantPlugins::CORL::Plugin</a>
250
+
251
+ <li><a href="../../VagrantPlugins/CORL/Provisioner.html">VagrantPlugins::CORL::Provisioner</a>
252
+
253
+ <li><a href="../../VagrantPlugins/CORL/Provisioner/CORL.html">VagrantPlugins::CORL::Provisioner::CORL</a>
254
+
255
+ <li><a href="../../Nucleon.html">Nucleon</a>
256
+
257
+ <li><a href="../../Nucleon/Config.html">Nucleon::Config</a>
258
+
259
+ <li><a href="../../Nucleon/Plugin.html">Nucleon::Plugin</a>
260
+
261
+ <li><a href="../../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
262
+
263
+ <li><a href="../../Nucleon/Plugin/Configuration.html">Nucleon::Plugin::Configuration</a>
264
+
265
+ <li><a href="../../Nucleon/Plugin/Machine.html">Nucleon::Plugin::Machine</a>
266
+
267
+ <li><a href="../../Nucleon/Plugin/Network.html">Nucleon::Plugin::Network</a>
268
+
269
+ <li><a href="../../Nucleon/Plugin/Node.html">Nucleon::Plugin::Node</a>
270
+
271
+ <li><a href="../../Nucleon/Plugin/Provisioner.html">Nucleon::Plugin::Provisioner</a>
272
+
273
+ <li><a href="../../Puppet.html">Puppet</a>
274
+
275
+ <li><a href="../../Puppet/DataBinding.html">Puppet::DataBinding</a>
276
+
277
+ <li><a href="../../Puppet/DataBinding/Corl.html">Puppet::DataBinding::Corl</a>
278
+
279
+ <li><a href="../../Puppet/Indirector.html">Puppet::Indirector</a>
280
+
281
+ <li><a href="../../Puppet/Indirector/Corl.html">Puppet::Indirector::Corl</a>
282
+
283
+ <li><a href="../../Puppet/Parser.html">Puppet::Parser</a>
284
+
285
+ <li><a href="../../Puppet/Parser/Functions.html">Puppet::Parser::Functions</a>
286
+
287
+ <li><a href="../../Fog.html">Fog</a>
288
+
289
+ <li><a href="../../Fog/Compute.html">Fog::Compute</a>
290
+
291
+ <li><a href="../../Fog/Compute/AWS.html">Fog::Compute::AWS</a>
292
+
293
+ <li><a href="../../Fog/Compute/AWS/Server.html">Fog::Compute::AWS::Server</a>
294
+
295
+ <li><a href="../../Fog/Compute/RackspaceV2.html">Fog::Compute::RackspaceV2</a>
296
+
297
+ <li><a href="../../Fog/Compute/RackspaceV2/Server.html">Fog::Compute::RackspaceV2::Server</a>
298
+
299
+ <li><a href="../../Vagrant.html">Vagrant</a>
300
+
301
+ <li><a href="../../Vagrant/Config.html">Vagrant::Config</a>
302
+
303
+ <li><a href="../../Vagrant/Config/Loader.html">Vagrant::Config::Loader</a>
304
+
305
+ <li><a href="../../Vagrant/Vagrantfile.html">Vagrant::Vagrantfile</a>
306
+
307
+ <li><a href="../../Facter.html">Facter</a>
308
+
309
+ <li><a href="../../Facter/Util.html">Facter::Util</a>
310
+
311
+ <li><a href="../../Facter/Util/Loader.html">Facter::Util::Loader</a>
312
+
313
+ <li><a href="../../Hiera.html">Hiera</a>
314
+
315
+ <li><a href="../../Hiera/Backend.html">Hiera::Backend</a>
316
+
317
+ <li><a href="../../Hiera/Corl_logger.html">Hiera::Corl_logger</a>
318
+
319
+ <li><a href="../../Object.html">Object</a>
320
+
321
+ </ul>
322
+ </nav>
323
+
324
+ </div>
325
+ </nav>
326
+
327
+ <div id="documentation">
328
+ <h1 class="module">module Puppet::Parser::Functions</h1>
329
+
330
+ <div id="description" class="description">
331
+
332
+ <p>corl_include.rb</p>
333
+
334
+ <p>This function includes classes based on dynamic configurations. following
335
+ this order</p>
336
+ <ul><li>
337
+ <p><a href="../../Hiera.html">Hiera</a> backend, if present (no prefix)</p>
338
+ </li><li>
339
+ <p>::data::default::varname</p>
340
+ </li><li>
341
+ <p>::varname</p>
342
+ </li><li>
343
+ <p>{default parameter}</p>
344
+ </li></ul>
345
+
346
+ <p>corl_initialize.rb</p>
347
+
348
+ <p>Initialize the <a href="../../CORL.html">CORL</a> plugin system through <a
349
+ href="../../Puppet.html">Puppet</a></p>
350
+
351
+ <p>corl_merge.rb</p>
352
+
353
+ <p>Merges multiple hashes together recursively.</p>
354
+
355
+ <p>corl_resources.rb</p>
356
+
357
+ <p>This function adds resource definitions of a specific type to the <a
358
+ href="../../Puppet.html">Puppet</a> catalog</p>
359
+ <ul><li>
360
+ <p>Requires</p>
361
+ </li><li>
362
+ <p>-&gt; <a href="../../Puppet.html">Puppet</a> resource definition name
363
+ (define)</p>
364
+ </li><li>
365
+ <p>-&gt; <a href="../../Hiera.html">Hiera</a> lookup name (full name)</p>
366
+ </li><li>
367
+ <p>Optional</p>
368
+ </li><li>
369
+ <p>-&gt; default values for new resources</p>
370
+ </li></ul>
371
+
372
+ <p>If no resources are found, it returns without creating anything.</p>
373
+
374
+ <p>ensure.rb</p>
375
+
376
+ <p>Checks a given test and returns the success value or a failure value based
377
+ on test results.</p>
378
+
379
+ <p>file_exists.rb</p>
380
+
381
+ <p>global_array.rb</p>
382
+
383
+ <p>See: global_param.rb</p>
384
+
385
+ <p>global_hash.rb</p>
386
+
387
+ <p>See: global_param.rb</p>
388
+
389
+ <p>global_options.rb</p>
390
+
391
+ <p>This function sets globally available default options for other functions.</p>
392
+
393
+ <p>global_param.rb</p>
394
+
395
+ <p>This function performs a lookup for a variable value in various locations
396
+ following this order</p>
397
+ <ul><li>
398
+ <p><a href="../../Hiera.html">Hiera</a> backend, if present (no prefix)</p>
399
+ </li><li>
400
+ <p>::global::default::varname</p>
401
+ </li><li>
402
+ <p>::varname</p>
403
+ </li><li>
404
+ <p>{default parameter}</p>
405
+ </li></ul>
406
+
407
+ <p>interpolate.rb</p>
408
+
409
+ <p>Interpolate values from one hash to another for configuration injection.</p>
410
+
411
+ <p>is_false.rb</p>
412
+
413
+ <p>Checks whether a given string or boolean value is false.</p>
414
+
415
+ <p>is_true.rb</p>
416
+
417
+ <p>Checks whether a given string or boolean value is true.</p>
418
+
419
+ <p>module_array.rb</p>
420
+
421
+ <p>module_hash.rb</p>
422
+
423
+ <p>module_options.rb</p>
424
+
425
+ <p>This function sets module level default options for other functions.</p>
426
+
427
+ <p>module_param.rb</p>
428
+
429
+ <p>This function performs a lookup for a variable value in various locations
430
+ following this order</p>
431
+ <ul><li>
432
+ <p><a href="../../Hiera.html">Hiera</a> backend, if present (modulename
433
+ prefix)</p>
434
+ </li><li>
435
+ <p>::corl::default::{modulename}::{varname} (configurable!!)</p>
436
+ </li><li>
437
+ <p>::{modulename}::default::{varname}</p>
438
+ </li><li>
439
+ <p>{default parameter}</p>
440
+ </li></ul>
441
+
442
+ <p>name.rb</p>
443
+
444
+ <p>Returns a standardized form of a given resource name.</p>
445
+
446
+ <p>render.rb</p>
447
+
448
+ <p>Returns the string-ified form of a given value or set of values.</p>
449
+
450
+ <p>value.rb</p>
451
+
452
+ <p>Returns the internal form of a given value.</p>
453
+
454
+ </div><!-- description -->
455
+
456
+
457
+
458
+
459
+ <section id="5Buntitled-5D" class="documentation-section">
460
+
461
+
462
+
463
+
464
+
465
+
466
+
467
+
468
+ <!-- Methods -->
469
+
470
+ </section><!-- 5Buntitled-5D -->
471
+
472
+ </div><!-- documentation -->
473
+
474
+
475
+ <footer id="validator-badges">
476
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
477
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
478
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
479
+ </footer>
480
+