corl 0.4.29 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -3
- data/Gemfile.lock +16 -13
- data/VERSION +1 -1
- data/bin/corl +21 -1
- data/bootstrap/os/ubuntu/00_base.sh +2 -2
- data/bootstrap/os/ubuntu/06_puppet.sh +7 -12
- data/bootstrap/os/ubuntu/09_nucleon.sh +1 -1
- data/bootstrap/os/ubuntu/10_corl.sh +1 -4
- data/corl.gemspec +193 -40
- data/lib/CORL/builder/identity.rb +68 -0
- data/lib/CORL/builder/package.rb +75 -0
- data/lib/CORL/configuration/file.rb +5 -5
- data/lib/CORL/machine/{aws.rb → AWS.rb} +2 -2
- data/lib/CORL/machine/physical.rb +1 -1
- data/lib/CORL/machine/rackspace.rb +1 -1
- data/lib/CORL/machine/vagrant.rb +2 -2
- data/lib/CORL/network/{default.rb → CORL.rb} +1 -1
- data/lib/CORL/node/{aws.rb → AWS.rb} +1 -1
- data/lib/CORL/node/local.rb +1 -1
- data/lib/CORL/node/vagrant.rb +7 -2
- data/lib/CORL/provisioner/puppetnode.rb +139 -131
- data/lib/core/build.rb +112 -0
- data/lib/core/facade.rb +48 -8
- data/lib/core/mixin/builder.rb +158 -0
- data/lib/core/mixin/lookup.rb +51 -20
- data/lib/core/mixin/machine/ssh.rb +16 -4
- data/lib/core/plugin/builder.rb +49 -0
- data/lib/core/plugin/{action.rb → cloud_action.rb} +22 -16
- data/lib/core/plugin/configuration.rb +9 -3
- data/lib/core/plugin/fog_machine.rb +3 -3
- data/lib/core/plugin/fog_node.rb +1 -1
- data/lib/core/plugin/machine.rb +2 -2
- data/lib/core/plugin/network.rb +39 -10
- data/lib/core/plugin/node.rb +95 -35
- data/lib/core/plugin/provisioner.rb +133 -113
- data/lib/core/util/puppet/resource.rb +1 -1
- data/lib/core/vagrant/actions/delete_cache.rb +7 -1
- data/lib/core/vagrant/commands/launcher.rb +2 -2
- data/lib/core/vagrant/config.rb +29 -2
- data/lib/corl.rb +9 -8
- data/lib/facter/corl_config_ready.rb +1 -1
- data/lib/facter/vagrant_exists.rb +1 -1
- data/lib/nucleon/action/cloud/create.rb +51 -0
- data/lib/nucleon/action/cloud/hiera.rb +61 -0
- data/lib/{CORL/action → nucleon/action/cloud}/images.rb +11 -2
- data/lib/nucleon/action/cloud/inspect.rb +47 -0
- data/lib/{CORL/action → nucleon/action/cloud}/machines.rb +11 -2
- data/lib/{CORL/action → nucleon/action/cloud}/regions.rb +11 -2
- data/lib/{CORL/action → nucleon/action/cloud}/vagrantfile.rb +11 -2
- data/lib/{CORL/action/ip.rb → nucleon/action/node/IP.rb} +11 -2
- data/lib/{CORL/action/ssh.rb → nucleon/action/node/SSH.rb} +15 -7
- data/lib/{CORL/action → nucleon/action/node}/authorize.rb +11 -2
- data/lib/{CORL/action → nucleon/action/node}/bootstrap.rb +13 -4
- data/lib/nucleon/action/node/build.rb +49 -0
- data/lib/{CORL/action → nucleon/action/node}/destroy.rb +14 -5
- data/lib/{CORL/action → nucleon/action/node}/exec.rb +11 -2
- data/lib/{CORL/action → nucleon/action/node}/facts.rb +12 -3
- data/lib/{CORL/action → nucleon/action/node}/image.rb +13 -4
- data/lib/nucleon/action/node/keypair.rb +85 -0
- data/lib/{CORL/action → nucleon/action/node}/lookup.rb +13 -4
- data/lib/{CORL/action → nucleon/action/node}/provision.rb +30 -8
- data/lib/{CORL/action → nucleon/action/node}/reboot.rb +13 -4
- data/lib/{CORL/action → nucleon/action/node}/revoke.rb +11 -2
- data/lib/{CORL/action → nucleon/action/node}/seed.rb +13 -4
- data/lib/{CORL/action → nucleon/action/node}/spawn.rb +19 -9
- data/lib/{CORL/action → nucleon/action/node}/start.rb +13 -4
- data/lib/{CORL/action → nucleon/action/node}/stop.rb +13 -4
- data/lib/{CORL → nucleon}/event/puppet.rb +2 -2
- data/lib/{CORL → nucleon}/template/environment.rb +2 -2
- data/lib/puppet/indirector/corl.rb +7 -4
- data/lib/puppet/parser/functions/corl_resources.rb +1 -0
- data/lib/puppet/parser/functions/global_array.rb +2 -1
- data/lib/puppet/parser/functions/global_hash.rb +2 -1
- data/lib/puppet/parser/functions/global_param.rb +2 -1
- data/lib/puppet/parser/functions/module_array.rb +2 -1
- data/lib/puppet/parser/functions/module_hash.rb +3 -2
- data/lib/puppet/parser/functions/module_param.rb +3 -2
- data/lib/puppet/parser/functions/render.rb +1 -0
- data/locales/en.yml +80 -0
- data/rdoc/site/0.4.29/CORL/Action/Authorize.html +485 -0
- data/rdoc/site/0.4.29/CORL/Action/Bootstrap.html +546 -0
- data/rdoc/site/0.4.29/CORL/Action/Build.html +396 -0
- data/rdoc/site/0.4.29/CORL/Action/Destroy.html +515 -0
- data/rdoc/site/0.4.29/CORL/Action/Exec.html +472 -0
- data/rdoc/site/0.4.29/CORL/Action/Facts.html +398 -0
- data/rdoc/site/0.4.29/CORL/Action/Image.html +515 -0
- data/rdoc/site/0.4.29/CORL/Action/Images.html +514 -0
- data/rdoc/site/0.4.29/CORL/Action/Ip.html +395 -0
- data/rdoc/site/0.4.29/CORL/Action/Keypair.html +494 -0
- data/rdoc/site/0.4.29/CORL/Action/Lookup.html +474 -0
- data/rdoc/site/0.4.29/CORL/Action/Machines.html +509 -0
- data/rdoc/site/0.4.29/CORL/Action/Provision.html +456 -0
- data/rdoc/site/0.4.29/CORL/Action/Reboot.html +515 -0
- data/rdoc/site/0.4.29/CORL/Action/Regions.html +509 -0
- data/rdoc/site/0.4.29/CORL/Action/Revoke.html +483 -0
- data/rdoc/site/0.4.29/CORL/Action/Seed.html +544 -0
- data/rdoc/site/0.4.29/CORL/Action/Spawn.html +616 -0
- data/rdoc/site/0.4.29/CORL/Action/Ssh.html +526 -0
- data/rdoc/site/0.4.29/CORL/Action/Start.html +515 -0
- data/rdoc/site/0.4.29/CORL/Action/Stop.html +515 -0
- data/rdoc/site/0.4.29/CORL/Action/Vagrantfile.html +457 -0
- data/rdoc/site/0.4.29/CORL/Action.html +360 -0
- data/rdoc/site/0.4.29/CORL/Configuration/File.html +1128 -0
- data/rdoc/site/0.4.29/CORL/Configuration.html +339 -0
- data/rdoc/site/0.4.29/CORL/Errors.html +339 -0
- data/rdoc/site/0.4.29/CORL/Event/Puppet.html +673 -0
- data/rdoc/site/0.4.29/CORL/Event.html +339 -0
- data/rdoc/site/0.4.29/CORL/Facade.html +742 -0
- data/rdoc/site/0.4.29/CORL/Machine/Aws.html +733 -0
- data/rdoc/site/0.4.29/CORL/Machine/Fog.html +1269 -0
- data/rdoc/site/0.4.29/CORL/Machine/Physical.html +1039 -0
- data/rdoc/site/0.4.29/CORL/Machine/Rackspace.html +514 -0
- data/rdoc/site/0.4.29/CORL/Machine/Vagrant.html +1300 -0
- data/rdoc/site/0.4.29/CORL/Machine.html +343 -0
- data/rdoc/site/0.4.29/CORL/Mixin/Action/Keypair.html +572 -0
- data/rdoc/site/0.4.29/CORL/Mixin/Action.html +339 -0
- data/rdoc/site/0.4.29/CORL/Mixin/Lookup.html +954 -0
- data/rdoc/site/0.4.29/CORL/Mixin/Machine/SSH.html +643 -0
- data/rdoc/site/0.4.29/CORL/Mixin/Machine.html +339 -0
- data/rdoc/site/0.4.29/CORL/Mixin/Macro/NetworkSettings.html +464 -0
- data/rdoc/site/0.4.29/CORL/Mixin/Macro.html +339 -0
- data/rdoc/site/0.4.29/CORL/Mixin.html +342 -0
- data/rdoc/site/0.4.29/CORL/Network/Default.html +391 -0
- data/rdoc/site/0.4.29/CORL/Network.html +339 -0
- data/rdoc/site/0.4.29/CORL/Node/Aws.html +716 -0
- data/rdoc/site/0.4.29/CORL/Node/Fog.html +1192 -0
- data/rdoc/site/0.4.29/CORL/Node/Local.html +424 -0
- data/rdoc/site/0.4.29/CORL/Node/Rackspace.html +709 -0
- data/rdoc/site/0.4.29/CORL/Node/Vagrant.html +1451 -0
- data/rdoc/site/0.4.29/CORL/Node.html +343 -0
- data/rdoc/site/0.4.29/CORL/Plugin/CloudAction.html +810 -0
- data/rdoc/site/0.4.29/CORL/Plugin.html +339 -0
- data/rdoc/site/0.4.29/CORL/Provisioner/Puppetnode.html +1095 -0
- data/rdoc/site/0.4.29/CORL/Provisioner.html +339 -0
- data/rdoc/site/0.4.29/CORL/Template/Environment.html +528 -0
- data/rdoc/site/0.4.29/CORL/Template.html +339 -0
- data/rdoc/site/0.4.29/CORL/Util/Puppet/Resource.html +1038 -0
- data/rdoc/site/0.4.29/CORL/Util/Puppet/ResourceGroup.html +920 -0
- data/rdoc/site/0.4.29/CORL/Util/Puppet.html +1087 -0
- data/rdoc/site/0.4.29/CORL/Util.html +341 -0
- data/rdoc/site/0.4.29/CORL/Vagrant/Config.html +896 -0
- data/rdoc/site/0.4.29/CORL/Vagrant.html +418 -0
- data/rdoc/site/0.4.29/CORL.html +465 -0
- data/rdoc/site/0.4.29/Facter/Util/Loader.html +396 -0
- data/rdoc/site/0.4.29/Facter/Util.html +339 -0
- data/rdoc/site/0.4.29/Facter.html +339 -0
- data/rdoc/site/0.4.29/Fog/Compute/AWS/Server.html +423 -0
- data/rdoc/site/0.4.29/Fog/Compute/AWS.html +345 -0
- data/rdoc/site/0.4.29/Fog/Compute/RackspaceV2/Server.html +408 -0
- data/rdoc/site/0.4.29/Fog/Compute/RackspaceV2.html +345 -0
- data/rdoc/site/0.4.29/Fog/Compute.html +340 -0
- data/rdoc/site/0.4.29/Fog.html +340 -0
- data/rdoc/site/0.4.29/Hiera/Backend.html +422 -0
- data/rdoc/site/0.4.29/Hiera/Corl_logger.html +449 -0
- data/rdoc/site/0.4.29/Hiera.html +346 -0
- data/rdoc/site/0.4.29/Nucleon/Config.html +357 -0
- data/rdoc/site/0.4.29/Nucleon/Plugin/Base.html +345 -0
- data/rdoc/site/0.4.29/Nucleon/Plugin/Configuration.html +1213 -0
- data/rdoc/site/0.4.29/Nucleon/Plugin/Machine.html +1279 -0
- data/rdoc/site/0.4.29/Nucleon/Plugin/Network.html +1425 -0
- data/rdoc/site/0.4.29/Nucleon/Plugin/Node.html +3715 -0
- data/rdoc/site/0.4.29/Nucleon/Plugin/Provisioner.html +1297 -0
- data/rdoc/site/0.4.29/Nucleon/Plugin.html +344 -0
- data/rdoc/site/0.4.29/Nucleon.html +344 -0
- data/rdoc/site/0.4.29/Object.html +358 -0
- data/rdoc/site/0.4.29/Puppet/DataBinding/Corl.html +345 -0
- data/rdoc/site/0.4.29/Puppet/DataBinding.html +338 -0
- data/rdoc/site/0.4.29/Puppet/Indirector/Corl.html +454 -0
- data/rdoc/site/0.4.29/Puppet/Indirector.html +338 -0
- data/rdoc/site/0.4.29/Puppet/Parser/Functions.html +480 -0
- data/rdoc/site/0.4.29/Puppet/Parser.html +338 -0
- data/rdoc/site/0.4.29/Puppet.html +338 -0
- data/rdoc/site/0.4.29/README_rdoc.html +340 -0
- data/rdoc/site/0.4.29/Vagrant/Config/Loader.html +399 -0
- data/rdoc/site/0.4.29/Vagrant/Config.html +339 -0
- data/rdoc/site/0.4.29/Vagrant/Vagrantfile.html +392 -0
- data/rdoc/site/0.4.29/Vagrant.html +346 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action/DeleteCache.html +396 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action/InitKeys.html +408 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action/LinkNetwork.html +406 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Action.html +341 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/BaseAction.html +491 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Command/Launcher.html +533 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Command.html +339 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Config/CORL.html +732 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Config.html +339 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Plugin.html +345 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Provisioner/CORL.html +536 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL/Provisioner.html +339 -0
- data/rdoc/site/0.4.29/VagrantPlugins/CORL.html +346 -0
- data/rdoc/site/0.4.29/VagrantPlugins.html +346 -0
- data/rdoc/site/0.4.29/created.rid +96 -0
- data/rdoc/site/0.4.29/images/add.png +0 -0
- data/rdoc/site/0.4.29/images/brick.png +0 -0
- data/rdoc/site/0.4.29/images/brick_link.png +0 -0
- data/rdoc/site/0.4.29/images/bug.png +0 -0
- data/rdoc/site/0.4.29/images/bullet_black.png +0 -0
- data/rdoc/site/0.4.29/images/bullet_toggle_minus.png +0 -0
- data/rdoc/site/0.4.29/images/bullet_toggle_plus.png +0 -0
- data/rdoc/site/0.4.29/images/date.png +0 -0
- data/rdoc/site/0.4.29/images/delete.png +0 -0
- data/rdoc/site/0.4.29/images/find.png +0 -0
- data/rdoc/site/0.4.29/images/loadingAnimation.gif +0 -0
- data/rdoc/site/0.4.29/images/macFFBgHack.png +0 -0
- data/rdoc/site/0.4.29/images/package.png +0 -0
- data/rdoc/site/0.4.29/images/page_green.png +0 -0
- data/rdoc/site/0.4.29/images/page_white_text.png +0 -0
- data/rdoc/site/0.4.29/images/page_white_width.png +0 -0
- data/rdoc/site/0.4.29/images/plugin.png +0 -0
- data/rdoc/site/0.4.29/images/ruby.png +0 -0
- data/rdoc/site/0.4.29/images/tag_blue.png +0 -0
- data/rdoc/site/0.4.29/images/tag_green.png +0 -0
- data/rdoc/site/0.4.29/images/transparent.png +0 -0
- data/rdoc/site/0.4.29/images/wrench.png +0 -0
- data/rdoc/site/0.4.29/images/wrench_orange.png +0 -0
- data/rdoc/site/0.4.29/images/zoom.png +0 -0
- data/rdoc/site/0.4.29/index.html +339 -0
- data/rdoc/site/0.4.29/js/darkfish.js +155 -0
- data/rdoc/site/0.4.29/js/jquery.js +18 -0
- data/rdoc/site/0.4.29/js/navigation.js +142 -0
- data/rdoc/site/0.4.29/js/search.js +94 -0
- data/rdoc/site/0.4.29/js/search_index.js +1 -0
- data/rdoc/site/0.4.29/js/searcher.js +228 -0
- data/rdoc/site/0.4.29/rdoc.css +543 -0
- data/rdoc/site/0.4.29/table_of_contents.html +1561 -0
- metadata +192 -45
- data/lib/CORL/action/build.rb +0 -22
- data/lib/CORL/action/keypair.rb +0 -56
- data/lib/core/mod/facter_loader.rb +0 -15
@@ -0,0 +1,339 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
6
|
+
|
7
|
+
<title>module CORL::Template - 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/CORL/template/environment.rb
|
51
|
+
</ul>
|
52
|
+
</nav>
|
53
|
+
|
54
|
+
|
55
|
+
</div>
|
56
|
+
|
57
|
+
<div id="class-metadata">
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
</div>
|
63
|
+
|
64
|
+
<div id="project-metadata">
|
65
|
+
<nav id="fileindex-section" class="section project-section">
|
66
|
+
<h3 class="section-header">Pages</h3>
|
67
|
+
|
68
|
+
<ul>
|
69
|
+
|
70
|
+
<li class="file"><a href="../README_rdoc.html">README</a>
|
71
|
+
|
72
|
+
</ul>
|
73
|
+
</nav>
|
74
|
+
|
75
|
+
<nav id="classindex-section" class="section project-section">
|
76
|
+
<h3 class="section-header">Class and Module Index</h3>
|
77
|
+
|
78
|
+
<ul class="link-list">
|
79
|
+
|
80
|
+
<li><a href="../CORL.html">CORL</a>
|
81
|
+
|
82
|
+
<li><a href="../CORL/Action.html">CORL::Action</a>
|
83
|
+
|
84
|
+
<li><a href="../CORL/Action/Authorize.html">CORL::Action::Authorize</a>
|
85
|
+
|
86
|
+
<li><a href="../CORL/Action/Bootstrap.html">CORL::Action::Bootstrap</a>
|
87
|
+
|
88
|
+
<li><a href="../CORL/Action/Build.html">CORL::Action::Build</a>
|
89
|
+
|
90
|
+
<li><a href="../CORL/Action/Destroy.html">CORL::Action::Destroy</a>
|
91
|
+
|
92
|
+
<li><a href="../CORL/Action/Exec.html">CORL::Action::Exec</a>
|
93
|
+
|
94
|
+
<li><a href="../CORL/Action/Facts.html">CORL::Action::Facts</a>
|
95
|
+
|
96
|
+
<li><a href="../CORL/Action/Image.html">CORL::Action::Image</a>
|
97
|
+
|
98
|
+
<li><a href="../CORL/Action/Images.html">CORL::Action::Images</a>
|
99
|
+
|
100
|
+
<li><a href="../CORL/Action/Ip.html">CORL::Action::Ip</a>
|
101
|
+
|
102
|
+
<li><a href="../CORL/Action/Keypair.html">CORL::Action::Keypair</a>
|
103
|
+
|
104
|
+
<li><a href="../CORL/Action/Lookup.html">CORL::Action::Lookup</a>
|
105
|
+
|
106
|
+
<li><a href="../CORL/Action/Machines.html">CORL::Action::Machines</a>
|
107
|
+
|
108
|
+
<li><a href="../CORL/Action/Provision.html">CORL::Action::Provision</a>
|
109
|
+
|
110
|
+
<li><a href="../CORL/Action/Reboot.html">CORL::Action::Reboot</a>
|
111
|
+
|
112
|
+
<li><a href="../CORL/Action/Regions.html">CORL::Action::Regions</a>
|
113
|
+
|
114
|
+
<li><a href="../CORL/Action/Revoke.html">CORL::Action::Revoke</a>
|
115
|
+
|
116
|
+
<li><a href="../CORL/Action/Seed.html">CORL::Action::Seed</a>
|
117
|
+
|
118
|
+
<li><a href="../CORL/Action/Spawn.html">CORL::Action::Spawn</a>
|
119
|
+
|
120
|
+
<li><a href="../CORL/Action/Ssh.html">CORL::Action::Ssh</a>
|
121
|
+
|
122
|
+
<li><a href="../CORL/Action/Start.html">CORL::Action::Start</a>
|
123
|
+
|
124
|
+
<li><a href="../CORL/Action/Stop.html">CORL::Action::Stop</a>
|
125
|
+
|
126
|
+
<li><a href="../CORL/Action/Vagrantfile.html">CORL::Action::Vagrantfile</a>
|
127
|
+
|
128
|
+
<li><a href="../CORL/Configuration.html">CORL::Configuration</a>
|
129
|
+
|
130
|
+
<li><a href="../CORL/Configuration/File.html">CORL::Configuration::File</a>
|
131
|
+
|
132
|
+
<li><a href="../CORL/Errors.html">CORL::Errors</a>
|
133
|
+
|
134
|
+
<li><a href="../CORL/Event.html">CORL::Event</a>
|
135
|
+
|
136
|
+
<li><a href="../CORL/Event/Puppet.html">CORL::Event::Puppet</a>
|
137
|
+
|
138
|
+
<li><a href="../CORL/Facade.html">CORL::Facade</a>
|
139
|
+
|
140
|
+
<li><a href="../CORL/Machine.html">CORL::Machine</a>
|
141
|
+
|
142
|
+
<li><a href="../CORL/Machine/Aws.html">CORL::Machine::Aws</a>
|
143
|
+
|
144
|
+
<li><a href="../CORL/Machine/Fog.html">CORL::Machine::Fog</a>
|
145
|
+
|
146
|
+
<li><a href="../CORL/Machine/Physical.html">CORL::Machine::Physical</a>
|
147
|
+
|
148
|
+
<li><a href="../CORL/Machine/Rackspace.html">CORL::Machine::Rackspace</a>
|
149
|
+
|
150
|
+
<li><a href="../CORL/Machine/Vagrant.html">CORL::Machine::Vagrant</a>
|
151
|
+
|
152
|
+
<li><a href="../CORL/Mixin.html">CORL::Mixin</a>
|
153
|
+
|
154
|
+
<li><a href="../CORL/Mixin/Action.html">CORL::Mixin::Action</a>
|
155
|
+
|
156
|
+
<li><a href="../CORL/Mixin/Action/Keypair.html">CORL::Mixin::Action::Keypair</a>
|
157
|
+
|
158
|
+
<li><a href="../CORL/Mixin/Lookup.html">CORL::Mixin::Lookup</a>
|
159
|
+
|
160
|
+
<li><a href="../CORL/Mixin/Machine.html">CORL::Mixin::Machine</a>
|
161
|
+
|
162
|
+
<li><a href="../CORL/Mixin/Machine/SSH.html">CORL::Mixin::Machine::SSH</a>
|
163
|
+
|
164
|
+
<li><a href="../CORL/Mixin/Macro.html">CORL::Mixin::Macro</a>
|
165
|
+
|
166
|
+
<li><a href="../CORL/Mixin/Macro/NetworkSettings.html">CORL::Mixin::Macro::NetworkSettings</a>
|
167
|
+
|
168
|
+
<li><a href="../CORL/Network.html">CORL::Network</a>
|
169
|
+
|
170
|
+
<li><a href="../CORL/Network/Default.html">CORL::Network::Default</a>
|
171
|
+
|
172
|
+
<li><a href="../CORL/Node.html">CORL::Node</a>
|
173
|
+
|
174
|
+
<li><a href="../CORL/Node/Aws.html">CORL::Node::Aws</a>
|
175
|
+
|
176
|
+
<li><a href="../CORL/Node/Fog.html">CORL::Node::Fog</a>
|
177
|
+
|
178
|
+
<li><a href="../CORL/Node/Local.html">CORL::Node::Local</a>
|
179
|
+
|
180
|
+
<li><a href="../CORL/Node/Rackspace.html">CORL::Node::Rackspace</a>
|
181
|
+
|
182
|
+
<li><a href="../CORL/Node/Vagrant.html">CORL::Node::Vagrant</a>
|
183
|
+
|
184
|
+
<li><a href="../CORL/Plugin.html">CORL::Plugin</a>
|
185
|
+
|
186
|
+
<li><a href="../CORL/Plugin/CloudAction.html">CORL::Plugin::CloudAction</a>
|
187
|
+
|
188
|
+
<li><a href="../CORL/Provisioner.html">CORL::Provisioner</a>
|
189
|
+
|
190
|
+
<li><a href="../CORL/Provisioner/Puppetnode.html">CORL::Provisioner::Puppetnode</a>
|
191
|
+
|
192
|
+
<li><a href="../CORL/Template.html">CORL::Template</a>
|
193
|
+
|
194
|
+
<li><a href="../CORL/Template/Environment.html">CORL::Template::Environment</a>
|
195
|
+
|
196
|
+
<li><a href="../CORL/Util.html">CORL::Util</a>
|
197
|
+
|
198
|
+
<li><a href="../CORL/Util/Puppet.html">CORL::Util::Puppet</a>
|
199
|
+
|
200
|
+
<li><a href="../CORL/Util/Puppet/Resource.html">CORL::Util::Puppet::Resource</a>
|
201
|
+
|
202
|
+
<li><a href="../CORL/Util/Puppet/ResourceGroup.html">CORL::Util::Puppet::ResourceGroup</a>
|
203
|
+
|
204
|
+
<li><a href="../CORL/Vagrant.html">CORL::Vagrant</a>
|
205
|
+
|
206
|
+
<li><a href="../CORL/Vagrant/Config.html">CORL::Vagrant::Config</a>
|
207
|
+
|
208
|
+
<li><a href="../VagrantPlugins.html">VagrantPlugins</a>
|
209
|
+
|
210
|
+
<li><a href="../VagrantPlugins/CORL.html">VagrantPlugins::CORL</a>
|
211
|
+
|
212
|
+
<li><a href="../VagrantPlugins/CORL/Action.html">VagrantPlugins::CORL::Action</a>
|
213
|
+
|
214
|
+
<li><a href="../VagrantPlugins/CORL/Action/DeleteCache.html">VagrantPlugins::CORL::Action::DeleteCache</a>
|
215
|
+
|
216
|
+
<li><a href="../VagrantPlugins/CORL/Action/InitKeys.html">VagrantPlugins::CORL::Action::InitKeys</a>
|
217
|
+
|
218
|
+
<li><a href="../VagrantPlugins/CORL/Action/LinkNetwork.html">VagrantPlugins::CORL::Action::LinkNetwork</a>
|
219
|
+
|
220
|
+
<li><a href="../VagrantPlugins/CORL/BaseAction.html">VagrantPlugins::CORL::BaseAction</a>
|
221
|
+
|
222
|
+
<li><a href="../VagrantPlugins/CORL/Command.html">VagrantPlugins::CORL::Command</a>
|
223
|
+
|
224
|
+
<li><a href="../VagrantPlugins/CORL/Command/Launcher.html">VagrantPlugins::CORL::Command::Launcher</a>
|
225
|
+
|
226
|
+
<li><a href="../VagrantPlugins/CORL/Config.html">VagrantPlugins::CORL::Config</a>
|
227
|
+
|
228
|
+
<li><a href="../VagrantPlugins/CORL/Config/CORL.html">VagrantPlugins::CORL::Config::CORL</a>
|
229
|
+
|
230
|
+
<li><a href="../VagrantPlugins/CORL/Plugin.html">VagrantPlugins::CORL::Plugin</a>
|
231
|
+
|
232
|
+
<li><a href="../VagrantPlugins/CORL/Provisioner.html">VagrantPlugins::CORL::Provisioner</a>
|
233
|
+
|
234
|
+
<li><a href="../VagrantPlugins/CORL/Provisioner/CORL.html">VagrantPlugins::CORL::Provisioner::CORL</a>
|
235
|
+
|
236
|
+
<li><a href="../Nucleon.html">Nucleon</a>
|
237
|
+
|
238
|
+
<li><a href="../Nucleon/Config.html">Nucleon::Config</a>
|
239
|
+
|
240
|
+
<li><a href="../Nucleon/Plugin.html">Nucleon::Plugin</a>
|
241
|
+
|
242
|
+
<li><a href="../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
|
243
|
+
|
244
|
+
<li><a href="../Nucleon/Plugin/Configuration.html">Nucleon::Plugin::Configuration</a>
|
245
|
+
|
246
|
+
<li><a href="../Nucleon/Plugin/Machine.html">Nucleon::Plugin::Machine</a>
|
247
|
+
|
248
|
+
<li><a href="../Nucleon/Plugin/Network.html">Nucleon::Plugin::Network</a>
|
249
|
+
|
250
|
+
<li><a href="../Nucleon/Plugin/Node.html">Nucleon::Plugin::Node</a>
|
251
|
+
|
252
|
+
<li><a href="../Nucleon/Plugin/Provisioner.html">Nucleon::Plugin::Provisioner</a>
|
253
|
+
|
254
|
+
<li><a href="../Puppet.html">Puppet</a>
|
255
|
+
|
256
|
+
<li><a href="../Puppet/DataBinding.html">Puppet::DataBinding</a>
|
257
|
+
|
258
|
+
<li><a href="../Puppet/DataBinding/Corl.html">Puppet::DataBinding::Corl</a>
|
259
|
+
|
260
|
+
<li><a href="../Puppet/Indirector.html">Puppet::Indirector</a>
|
261
|
+
|
262
|
+
<li><a href="../Puppet/Indirector/Corl.html">Puppet::Indirector::Corl</a>
|
263
|
+
|
264
|
+
<li><a href="../Puppet/Parser.html">Puppet::Parser</a>
|
265
|
+
|
266
|
+
<li><a href="../Puppet/Parser/Functions.html">Puppet::Parser::Functions</a>
|
267
|
+
|
268
|
+
<li><a href="../Fog.html">Fog</a>
|
269
|
+
|
270
|
+
<li><a href="../Fog/Compute.html">Fog::Compute</a>
|
271
|
+
|
272
|
+
<li><a href="../Fog/Compute/AWS.html">Fog::Compute::AWS</a>
|
273
|
+
|
274
|
+
<li><a href="../Fog/Compute/AWS/Server.html">Fog::Compute::AWS::Server</a>
|
275
|
+
|
276
|
+
<li><a href="../Fog/Compute/RackspaceV2.html">Fog::Compute::RackspaceV2</a>
|
277
|
+
|
278
|
+
<li><a href="../Fog/Compute/RackspaceV2/Server.html">Fog::Compute::RackspaceV2::Server</a>
|
279
|
+
|
280
|
+
<li><a href="../Vagrant.html">Vagrant</a>
|
281
|
+
|
282
|
+
<li><a href="../Vagrant/Config.html">Vagrant::Config</a>
|
283
|
+
|
284
|
+
<li><a href="../Vagrant/Config/Loader.html">Vagrant::Config::Loader</a>
|
285
|
+
|
286
|
+
<li><a href="../Vagrant/Vagrantfile.html">Vagrant::Vagrantfile</a>
|
287
|
+
|
288
|
+
<li><a href="../Facter.html">Facter</a>
|
289
|
+
|
290
|
+
<li><a href="../Facter/Util.html">Facter::Util</a>
|
291
|
+
|
292
|
+
<li><a href="../Facter/Util/Loader.html">Facter::Util::Loader</a>
|
293
|
+
|
294
|
+
<li><a href="../Hiera.html">Hiera</a>
|
295
|
+
|
296
|
+
<li><a href="../Hiera/Backend.html">Hiera::Backend</a>
|
297
|
+
|
298
|
+
<li><a href="../Hiera/Corl_logger.html">Hiera::Corl_logger</a>
|
299
|
+
|
300
|
+
<li><a href="../Object.html">Object</a>
|
301
|
+
|
302
|
+
</ul>
|
303
|
+
</nav>
|
304
|
+
|
305
|
+
</div>
|
306
|
+
</nav>
|
307
|
+
|
308
|
+
<div id="documentation">
|
309
|
+
<h1 class="module">module CORL::Template</h1>
|
310
|
+
|
311
|
+
<div id="description" class="description">
|
312
|
+
|
313
|
+
</div><!-- description -->
|
314
|
+
|
315
|
+
|
316
|
+
|
317
|
+
|
318
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
319
|
+
|
320
|
+
|
321
|
+
|
322
|
+
|
323
|
+
|
324
|
+
|
325
|
+
|
326
|
+
|
327
|
+
<!-- Methods -->
|
328
|
+
|
329
|
+
</section><!-- 5Buntitled-5D -->
|
330
|
+
|
331
|
+
</div><!-- documentation -->
|
332
|
+
|
333
|
+
|
334
|
+
<footer id="validator-badges">
|
335
|
+
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
336
|
+
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
|
337
|
+
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
338
|
+
</footer>
|
339
|
+
|