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,346 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>module VagrantPlugins - 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/core/vagrant/action.rb
51
+ <li>lib/core/vagrant/actions/delete_cache.rb
52
+ <li>lib/core/vagrant/actions/init_keys.rb
53
+ <li>lib/core/vagrant/actions/link_network.rb
54
+ <li>lib/core/vagrant/commands/launcher.rb
55
+ <li>lib/core/vagrant/plugins.rb
56
+ <li>lib/core/vagrant/provisioner/config.rb
57
+ <li>lib/core/vagrant/provisioner/provisioner.rb
58
+ </ul>
59
+ </nav>
60
+
61
+
62
+ </div>
63
+
64
+ <div id="class-metadata">
65
+
66
+
67
+
68
+
69
+ </div>
70
+
71
+ <div id="project-metadata">
72
+ <nav id="fileindex-section" class="section project-section">
73
+ <h3 class="section-header">Pages</h3>
74
+
75
+ <ul>
76
+
77
+ <li class="file"><a href="./README_rdoc.html">README</a>
78
+
79
+ </ul>
80
+ </nav>
81
+
82
+ <nav id="classindex-section" class="section project-section">
83
+ <h3 class="section-header">Class and Module Index</h3>
84
+
85
+ <ul class="link-list">
86
+
87
+ <li><a href="./CORL.html">CORL</a>
88
+
89
+ <li><a href="./CORL/Action.html">CORL::Action</a>
90
+
91
+ <li><a href="./CORL/Action/Authorize.html">CORL::Action::Authorize</a>
92
+
93
+ <li><a href="./CORL/Action/Bootstrap.html">CORL::Action::Bootstrap</a>
94
+
95
+ <li><a href="./CORL/Action/Build.html">CORL::Action::Build</a>
96
+
97
+ <li><a href="./CORL/Action/Destroy.html">CORL::Action::Destroy</a>
98
+
99
+ <li><a href="./CORL/Action/Exec.html">CORL::Action::Exec</a>
100
+
101
+ <li><a href="./CORL/Action/Facts.html">CORL::Action::Facts</a>
102
+
103
+ <li><a href="./CORL/Action/Image.html">CORL::Action::Image</a>
104
+
105
+ <li><a href="./CORL/Action/Images.html">CORL::Action::Images</a>
106
+
107
+ <li><a href="./CORL/Action/Ip.html">CORL::Action::Ip</a>
108
+
109
+ <li><a href="./CORL/Action/Keypair.html">CORL::Action::Keypair</a>
110
+
111
+ <li><a href="./CORL/Action/Lookup.html">CORL::Action::Lookup</a>
112
+
113
+ <li><a href="./CORL/Action/Machines.html">CORL::Action::Machines</a>
114
+
115
+ <li><a href="./CORL/Action/Provision.html">CORL::Action::Provision</a>
116
+
117
+ <li><a href="./CORL/Action/Reboot.html">CORL::Action::Reboot</a>
118
+
119
+ <li><a href="./CORL/Action/Regions.html">CORL::Action::Regions</a>
120
+
121
+ <li><a href="./CORL/Action/Revoke.html">CORL::Action::Revoke</a>
122
+
123
+ <li><a href="./CORL/Action/Seed.html">CORL::Action::Seed</a>
124
+
125
+ <li><a href="./CORL/Action/Spawn.html">CORL::Action::Spawn</a>
126
+
127
+ <li><a href="./CORL/Action/Ssh.html">CORL::Action::Ssh</a>
128
+
129
+ <li><a href="./CORL/Action/Start.html">CORL::Action::Start</a>
130
+
131
+ <li><a href="./CORL/Action/Stop.html">CORL::Action::Stop</a>
132
+
133
+ <li><a href="./CORL/Action/Vagrantfile.html">CORL::Action::Vagrantfile</a>
134
+
135
+ <li><a href="./CORL/Configuration.html">CORL::Configuration</a>
136
+
137
+ <li><a href="./CORL/Configuration/File.html">CORL::Configuration::File</a>
138
+
139
+ <li><a href="./CORL/Errors.html">CORL::Errors</a>
140
+
141
+ <li><a href="./CORL/Event.html">CORL::Event</a>
142
+
143
+ <li><a href="./CORL/Event/Puppet.html">CORL::Event::Puppet</a>
144
+
145
+ <li><a href="./CORL/Facade.html">CORL::Facade</a>
146
+
147
+ <li><a href="./CORL/Machine.html">CORL::Machine</a>
148
+
149
+ <li><a href="./CORL/Machine/Aws.html">CORL::Machine::Aws</a>
150
+
151
+ <li><a href="./CORL/Machine/Fog.html">CORL::Machine::Fog</a>
152
+
153
+ <li><a href="./CORL/Machine/Physical.html">CORL::Machine::Physical</a>
154
+
155
+ <li><a href="./CORL/Machine/Rackspace.html">CORL::Machine::Rackspace</a>
156
+
157
+ <li><a href="./CORL/Machine/Vagrant.html">CORL::Machine::Vagrant</a>
158
+
159
+ <li><a href="./CORL/Mixin.html">CORL::Mixin</a>
160
+
161
+ <li><a href="./CORL/Mixin/Action.html">CORL::Mixin::Action</a>
162
+
163
+ <li><a href="./CORL/Mixin/Action/Keypair.html">CORL::Mixin::Action::Keypair</a>
164
+
165
+ <li><a href="./CORL/Mixin/Lookup.html">CORL::Mixin::Lookup</a>
166
+
167
+ <li><a href="./CORL/Mixin/Machine.html">CORL::Mixin::Machine</a>
168
+
169
+ <li><a href="./CORL/Mixin/Machine/SSH.html">CORL::Mixin::Machine::SSH</a>
170
+
171
+ <li><a href="./CORL/Mixin/Macro.html">CORL::Mixin::Macro</a>
172
+
173
+ <li><a href="./CORL/Mixin/Macro/NetworkSettings.html">CORL::Mixin::Macro::NetworkSettings</a>
174
+
175
+ <li><a href="./CORL/Network.html">CORL::Network</a>
176
+
177
+ <li><a href="./CORL/Network/Default.html">CORL::Network::Default</a>
178
+
179
+ <li><a href="./CORL/Node.html">CORL::Node</a>
180
+
181
+ <li><a href="./CORL/Node/Aws.html">CORL::Node::Aws</a>
182
+
183
+ <li><a href="./CORL/Node/Fog.html">CORL::Node::Fog</a>
184
+
185
+ <li><a href="./CORL/Node/Local.html">CORL::Node::Local</a>
186
+
187
+ <li><a href="./CORL/Node/Rackspace.html">CORL::Node::Rackspace</a>
188
+
189
+ <li><a href="./CORL/Node/Vagrant.html">CORL::Node::Vagrant</a>
190
+
191
+ <li><a href="./CORL/Plugin.html">CORL::Plugin</a>
192
+
193
+ <li><a href="./CORL/Plugin/CloudAction.html">CORL::Plugin::CloudAction</a>
194
+
195
+ <li><a href="./CORL/Provisioner.html">CORL::Provisioner</a>
196
+
197
+ <li><a href="./CORL/Provisioner/Puppetnode.html">CORL::Provisioner::Puppetnode</a>
198
+
199
+ <li><a href="./CORL/Template.html">CORL::Template</a>
200
+
201
+ <li><a href="./CORL/Template/Environment.html">CORL::Template::Environment</a>
202
+
203
+ <li><a href="./CORL/Util.html">CORL::Util</a>
204
+
205
+ <li><a href="./CORL/Util/Puppet.html">CORL::Util::Puppet</a>
206
+
207
+ <li><a href="./CORL/Util/Puppet/Resource.html">CORL::Util::Puppet::Resource</a>
208
+
209
+ <li><a href="./CORL/Util/Puppet/ResourceGroup.html">CORL::Util::Puppet::ResourceGroup</a>
210
+
211
+ <li><a href="./CORL/Vagrant.html">CORL::Vagrant</a>
212
+
213
+ <li><a href="./CORL/Vagrant/Config.html">CORL::Vagrant::Config</a>
214
+
215
+ <li><a href="./VagrantPlugins.html">VagrantPlugins</a>
216
+
217
+ <li><a href="./VagrantPlugins/CORL.html">VagrantPlugins::CORL</a>
218
+
219
+ <li><a href="./VagrantPlugins/CORL/Action.html">VagrantPlugins::CORL::Action</a>
220
+
221
+ <li><a href="./VagrantPlugins/CORL/Action/DeleteCache.html">VagrantPlugins::CORL::Action::DeleteCache</a>
222
+
223
+ <li><a href="./VagrantPlugins/CORL/Action/InitKeys.html">VagrantPlugins::CORL::Action::InitKeys</a>
224
+
225
+ <li><a href="./VagrantPlugins/CORL/Action/LinkNetwork.html">VagrantPlugins::CORL::Action::LinkNetwork</a>
226
+
227
+ <li><a href="./VagrantPlugins/CORL/BaseAction.html">VagrantPlugins::CORL::BaseAction</a>
228
+
229
+ <li><a href="./VagrantPlugins/CORL/Command.html">VagrantPlugins::CORL::Command</a>
230
+
231
+ <li><a href="./VagrantPlugins/CORL/Command/Launcher.html">VagrantPlugins::CORL::Command::Launcher</a>
232
+
233
+ <li><a href="./VagrantPlugins/CORL/Config.html">VagrantPlugins::CORL::Config</a>
234
+
235
+ <li><a href="./VagrantPlugins/CORL/Config/CORL.html">VagrantPlugins::CORL::Config::CORL</a>
236
+
237
+ <li><a href="./VagrantPlugins/CORL/Plugin.html">VagrantPlugins::CORL::Plugin</a>
238
+
239
+ <li><a href="./VagrantPlugins/CORL/Provisioner.html">VagrantPlugins::CORL::Provisioner</a>
240
+
241
+ <li><a href="./VagrantPlugins/CORL/Provisioner/CORL.html">VagrantPlugins::CORL::Provisioner::CORL</a>
242
+
243
+ <li><a href="./Nucleon.html">Nucleon</a>
244
+
245
+ <li><a href="./Nucleon/Config.html">Nucleon::Config</a>
246
+
247
+ <li><a href="./Nucleon/Plugin.html">Nucleon::Plugin</a>
248
+
249
+ <li><a href="./Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
250
+
251
+ <li><a href="./Nucleon/Plugin/Configuration.html">Nucleon::Plugin::Configuration</a>
252
+
253
+ <li><a href="./Nucleon/Plugin/Machine.html">Nucleon::Plugin::Machine</a>
254
+
255
+ <li><a href="./Nucleon/Plugin/Network.html">Nucleon::Plugin::Network</a>
256
+
257
+ <li><a href="./Nucleon/Plugin/Node.html">Nucleon::Plugin::Node</a>
258
+
259
+ <li><a href="./Nucleon/Plugin/Provisioner.html">Nucleon::Plugin::Provisioner</a>
260
+
261
+ <li><a href="./Puppet.html">Puppet</a>
262
+
263
+ <li><a href="./Puppet/DataBinding.html">Puppet::DataBinding</a>
264
+
265
+ <li><a href="./Puppet/DataBinding/Corl.html">Puppet::DataBinding::Corl</a>
266
+
267
+ <li><a href="./Puppet/Indirector.html">Puppet::Indirector</a>
268
+
269
+ <li><a href="./Puppet/Indirector/Corl.html">Puppet::Indirector::Corl</a>
270
+
271
+ <li><a href="./Puppet/Parser.html">Puppet::Parser</a>
272
+
273
+ <li><a href="./Puppet/Parser/Functions.html">Puppet::Parser::Functions</a>
274
+
275
+ <li><a href="./Fog.html">Fog</a>
276
+
277
+ <li><a href="./Fog/Compute.html">Fog::Compute</a>
278
+
279
+ <li><a href="./Fog/Compute/AWS.html">Fog::Compute::AWS</a>
280
+
281
+ <li><a href="./Fog/Compute/AWS/Server.html">Fog::Compute::AWS::Server</a>
282
+
283
+ <li><a href="./Fog/Compute/RackspaceV2.html">Fog::Compute::RackspaceV2</a>
284
+
285
+ <li><a href="./Fog/Compute/RackspaceV2/Server.html">Fog::Compute::RackspaceV2::Server</a>
286
+
287
+ <li><a href="./Vagrant.html">Vagrant</a>
288
+
289
+ <li><a href="./Vagrant/Config.html">Vagrant::Config</a>
290
+
291
+ <li><a href="./Vagrant/Config/Loader.html">Vagrant::Config::Loader</a>
292
+
293
+ <li><a href="./Vagrant/Vagrantfile.html">Vagrant::Vagrantfile</a>
294
+
295
+ <li><a href="./Facter.html">Facter</a>
296
+
297
+ <li><a href="./Facter/Util.html">Facter::Util</a>
298
+
299
+ <li><a href="./Facter/Util/Loader.html">Facter::Util::Loader</a>
300
+
301
+ <li><a href="./Hiera.html">Hiera</a>
302
+
303
+ <li><a href="./Hiera/Backend.html">Hiera::Backend</a>
304
+
305
+ <li><a href="./Hiera/Corl_logger.html">Hiera::Corl_logger</a>
306
+
307
+ <li><a href="./Object.html">Object</a>
308
+
309
+ </ul>
310
+ </nav>
311
+
312
+ </div>
313
+ </nav>
314
+
315
+ <div id="documentation">
316
+ <h1 class="module">module VagrantPlugins</h1>
317
+
318
+ <div id="description" class="description">
319
+
320
+ </div><!-- description -->
321
+
322
+
323
+
324
+
325
+ <section id="5Buntitled-5D" class="documentation-section">
326
+
327
+
328
+
329
+
330
+
331
+
332
+
333
+
334
+ <!-- Methods -->
335
+
336
+ </section><!-- 5Buntitled-5D -->
337
+
338
+ </div><!-- documentation -->
339
+
340
+
341
+ <footer id="validator-badges">
342
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
343
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
344
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
345
+ </footer>
346
+
@@ -0,0 +1,96 @@
1
+ Wed, 21 May 2014 16:35:19 -0400
2
+ README.rdoc Tue, 20 May 2014 18:16:38 -0400
3
+ lib/CORL/action/authorize.rb Tue, 13 May 2014 19:00:45 -0400
4
+ lib/CORL/action/bootstrap.rb Fri, 04 Apr 2014 19:42:44 -0400
5
+ lib/CORL/action/build.rb Fri, 04 Apr 2014 19:43:52 -0400
6
+ lib/CORL/action/destroy.rb Fri, 04 Apr 2014 19:44:28 -0400
7
+ lib/CORL/action/exec.rb Fri, 04 Apr 2014 19:45:29 -0400
8
+ lib/CORL/action/facts.rb Fri, 16 May 2014 01:25:29 -0400
9
+ lib/CORL/action/image.rb Fri, 04 Apr 2014 19:46:27 -0400
10
+ lib/CORL/action/images.rb Fri, 04 Apr 2014 19:49:55 -0400
11
+ lib/CORL/action/ip.rb Fri, 04 Apr 2014 19:47:10 -0400
12
+ lib/CORL/action/keypair.rb Thu, 20 Mar 2014 16:11:09 -0400
13
+ lib/CORL/action/lookup.rb Fri, 16 May 2014 01:31:08 -0400
14
+ lib/CORL/action/machines.rb Fri, 04 Apr 2014 19:50:42 -0400
15
+ lib/CORL/action/provision.rb Fri, 04 Apr 2014 19:51:43 -0400
16
+ lib/CORL/action/reboot.rb Tue, 08 Apr 2014 21:36:50 -0400
17
+ lib/CORL/action/regions.rb Fri, 04 Apr 2014 19:55:20 -0400
18
+ lib/CORL/action/revoke.rb Tue, 13 May 2014 19:15:38 -0400
19
+ lib/CORL/action/seed.rb Wed, 23 Apr 2014 17:53:26 -0400
20
+ lib/CORL/action/spawn.rb Wed, 23 Apr 2014 18:03:42 -0400
21
+ lib/CORL/action/ssh.rb Fri, 04 Apr 2014 19:58:21 -0400
22
+ lib/CORL/action/start.rb Fri, 04 Apr 2014 19:59:04 -0400
23
+ lib/CORL/action/stop.rb Fri, 04 Apr 2014 19:59:42 -0400
24
+ lib/CORL/action/vagrantfile.rb Fri, 04 Apr 2014 20:00:34 -0400
25
+ lib/CORL/configuration/file.rb Thu, 24 Apr 2014 04:37:03 -0400
26
+ lib/CORL/event/puppet.rb Tue, 25 Feb 2014 02:38:49 -0500
27
+ lib/CORL/machine/aws.rb Wed, 05 Mar 2014 00:09:19 -0500
28
+ lib/CORL/machine/physical.rb Sat, 29 Mar 2014 03:15:32 -0400
29
+ lib/CORL/machine/rackspace.rb Sat, 22 Mar 2014 21:19:14 -0400
30
+ lib/CORL/machine/vagrant.rb Mon, 28 Apr 2014 01:20:34 -0400
31
+ lib/CORL/network/default.rb Tue, 25 Feb 2014 02:39:42 -0500
32
+ lib/CORL/node/aws.rb Tue, 04 Mar 2014 22:45:32 -0500
33
+ lib/CORL/node/local.rb Sun, 30 Mar 2014 00:50:23 -0400
34
+ lib/CORL/node/rackspace.rb Sun, 02 Mar 2014 00:18:40 -0500
35
+ lib/CORL/node/vagrant.rb Thu, 24 Apr 2014 05:08:51 -0400
36
+ lib/CORL/provisioner/puppetnode.rb Wed, 21 May 2014 16:04:58 -0400
37
+ lib/CORL/template/environment.rb Fri, 21 Feb 2014 06:34:55 -0500
38
+ lib/core/errors.rb Thu, 27 Feb 2014 19:25:22 -0500
39
+ lib/core/facade.rb Wed, 14 May 2014 23:34:05 -0400
40
+ lib/core/mixin/action/keypair.rb Thu, 20 Mar 2014 15:50:52 -0400
41
+ lib/core/mixin/lookup.rb Wed, 21 May 2014 04:04:10 -0400
42
+ lib/core/mixin/machine/ssh.rb Tue, 29 Apr 2014 21:17:52 -0400
43
+ lib/core/mixin/macro/network_settings.rb Fri, 16 May 2014 00:59:41 -0400
44
+ lib/core/mod/facter_loader.rb Mon, 14 Apr 2014 00:02:01 -0400
45
+ lib/core/mod/fog_aws_server.rb Mon, 28 Apr 2014 03:00:40 -0400
46
+ lib/core/mod/fog_rackspace_server.rb Mon, 28 Apr 2014 02:52:27 -0400
47
+ lib/core/mod/hiera_backend.rb Mon, 14 Apr 2014 00:02:01 -0400
48
+ lib/core/plugin/action.rb Wed, 09 Apr 2014 18:13:25 -0400
49
+ lib/core/plugin/configuration.rb Thu, 24 Apr 2014 16:54:07 -0400
50
+ lib/core/plugin/fog_machine.rb Tue, 29 Apr 2014 21:19:47 -0400
51
+ lib/core/plugin/fog_node.rb Sun, 30 Mar 2014 00:48:20 -0400
52
+ lib/core/plugin/machine.rb Mon, 28 Apr 2014 01:12:10 -0400
53
+ lib/core/plugin/network.rb Wed, 14 May 2014 19:26:17 -0400
54
+ lib/core/plugin/node.rb Fri, 16 May 2014 01:02:25 -0400
55
+ lib/core/plugin/provisioner.rb Sun, 27 Apr 2014 00:06:09 -0400
56
+ lib/core/util/puppet.rb Mon, 28 Apr 2014 21:52:13 -0400
57
+ lib/core/util/puppet/resource.rb Fri, 21 Mar 2014 23:40:37 -0400
58
+ lib/core/util/puppet/resource_group.rb Thu, 01 May 2014 17:53:03 -0400
59
+ lib/core/vagrant/action.rb Mon, 28 Apr 2014 03:31:12 -0400
60
+ lib/core/vagrant/actions/delete_cache.rb Sun, 27 Apr 2014 00:03:20 -0400
61
+ lib/core/vagrant/actions/init_keys.rb Fri, 16 May 2014 17:34:08 -0400
62
+ lib/core/vagrant/actions/link_network.rb Thu, 15 May 2014 16:39:58 -0400
63
+ lib/core/vagrant/commands/launcher.rb Fri, 02 May 2014 05:22:35 -0400
64
+ lib/core/vagrant/config.rb Mon, 19 May 2014 15:10:55 -0400
65
+ lib/core/vagrant/plugins.rb Thu, 15 May 2014 16:39:14 -0400
66
+ lib/core/vagrant/provisioner/config.rb Mon, 28 Apr 2014 05:00:37 -0400
67
+ lib/core/vagrant/provisioner/provisioner.rb Mon, 19 May 2014 15:11:28 -0400
68
+ lib/corl.rb Mon, 28 Apr 2014 01:41:34 -0400
69
+ lib/facter/corl_build.rb Sat, 08 Mar 2014 17:28:18 -0500
70
+ lib/facter/corl_config_ready.rb Wed, 19 Feb 2014 20:55:10 -0500
71
+ lib/facter/corl_network.rb Sat, 08 Mar 2014 15:09:15 -0500
72
+ lib/facter/custom_facts.rb Wed, 14 May 2014 19:26:06 -0400
73
+ lib/facter/vagrant_exists.rb Thu, 06 Mar 2014 12:32:57 -0500
74
+ lib/hiera/corl_logger.rb Fri, 14 Mar 2014 23:01:32 -0400
75
+ lib/puppet/indirector/corl.rb Tue, 18 Mar 2014 19:33:35 -0400
76
+ lib/puppet/indirector/data_binding/corl.rb Sun, 16 Mar 2014 16:11:48 -0400
77
+ lib/puppet/parser/functions/corl_include.rb Tue, 18 Mar 2014 19:46:58 -0400
78
+ lib/puppet/parser/functions/corl_initialize.rb Mon, 17 Mar 2014 19:39:16 -0400
79
+ lib/puppet/parser/functions/corl_merge.rb Sat, 15 Mar 2014 02:31:29 -0400
80
+ lib/puppet/parser/functions/corl_resources.rb Fri, 21 Mar 2014 00:48:45 -0400
81
+ lib/puppet/parser/functions/ensure.rb Sat, 22 Feb 2014 18:50:19 -0500
82
+ lib/puppet/parser/functions/file_exists.rb Thu, 20 Mar 2014 19:33:19 -0400
83
+ lib/puppet/parser/functions/global_array.rb Tue, 18 Mar 2014 19:28:54 -0400
84
+ lib/puppet/parser/functions/global_hash.rb Tue, 18 Mar 2014 19:29:18 -0400
85
+ lib/puppet/parser/functions/global_options.rb Wed, 19 Feb 2014 21:06:06 -0500
86
+ lib/puppet/parser/functions/global_param.rb Tue, 18 Mar 2014 19:57:48 -0400
87
+ lib/puppet/parser/functions/interpolate.rb Tue, 18 Mar 2014 21:08:26 -0400
88
+ lib/puppet/parser/functions/is_false.rb Wed, 19 Feb 2014 21:06:29 -0500
89
+ lib/puppet/parser/functions/is_true.rb Wed, 19 Feb 2014 21:06:50 -0500
90
+ lib/puppet/parser/functions/module_array.rb Tue, 18 Mar 2014 19:30:28 -0400
91
+ lib/puppet/parser/functions/module_hash.rb Tue, 18 Mar 2014 19:31:23 -0400
92
+ lib/puppet/parser/functions/module_options.rb Tue, 18 Mar 2014 00:54:36 -0400
93
+ lib/puppet/parser/functions/module_param.rb Tue, 18 Mar 2014 19:53:11 -0400
94
+ lib/puppet/parser/functions/name.rb Fri, 14 Mar 2014 19:13:20 -0400
95
+ lib/puppet/parser/functions/render.rb Mon, 14 Apr 2014 00:02:01 -0400
96
+ lib/puppet/parser/functions/value.rb Wed, 19 Feb 2014 21:07:34 -0500
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file