corl 0.4.29 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,1561 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
|
|
3
|
+
<html>
|
|
4
|
+
<head>
|
|
5
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
|
6
|
+
|
|
7
|
+
<title>Table of Contents - 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 class="indexpage">
|
|
24
|
+
<h1>Table of Contents - corl 0.4.29</h1>
|
|
25
|
+
|
|
26
|
+
<h2>Pages</h2>
|
|
27
|
+
<ul>
|
|
28
|
+
<li class="file">
|
|
29
|
+
<a href="README_rdoc.html">README</a>
|
|
30
|
+
|
|
31
|
+
<img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
|
|
32
|
+
<ul class="initially-hidden">
|
|
33
|
+
<li><a href="README_rdoc.html#label-Contributing+to+CORL">Contributing to CORL</a>
|
|
34
|
+
<li><a href="README_rdoc.html#label-Copyright">Copyright</a>
|
|
35
|
+
</ul>
|
|
36
|
+
</li>
|
|
37
|
+
|
|
38
|
+
</ul>
|
|
39
|
+
|
|
40
|
+
<h2 id="classes">Classes/Modules</h2>
|
|
41
|
+
<ul>
|
|
42
|
+
<li class="module">
|
|
43
|
+
<a href="CORL.html">CORL</a>
|
|
44
|
+
</li>
|
|
45
|
+
<li class="module">
|
|
46
|
+
<a href="CORL/Action.html">CORL::Action</a>
|
|
47
|
+
</li>
|
|
48
|
+
<li class="class">
|
|
49
|
+
<a href="CORL/Action/Authorize.html">CORL::Action::Authorize</a>
|
|
50
|
+
</li>
|
|
51
|
+
<li class="class">
|
|
52
|
+
<a href="CORL/Action/Bootstrap.html">CORL::Action::Bootstrap</a>
|
|
53
|
+
</li>
|
|
54
|
+
<li class="class">
|
|
55
|
+
<a href="CORL/Action/Build.html">CORL::Action::Build</a>
|
|
56
|
+
</li>
|
|
57
|
+
<li class="class">
|
|
58
|
+
<a href="CORL/Action/Destroy.html">CORL::Action::Destroy</a>
|
|
59
|
+
</li>
|
|
60
|
+
<li class="class">
|
|
61
|
+
<a href="CORL/Action/Exec.html">CORL::Action::Exec</a>
|
|
62
|
+
</li>
|
|
63
|
+
<li class="class">
|
|
64
|
+
<a href="CORL/Action/Facts.html">CORL::Action::Facts</a>
|
|
65
|
+
</li>
|
|
66
|
+
<li class="class">
|
|
67
|
+
<a href="CORL/Action/Image.html">CORL::Action::Image</a>
|
|
68
|
+
</li>
|
|
69
|
+
<li class="class">
|
|
70
|
+
<a href="CORL/Action/Images.html">CORL::Action::Images</a>
|
|
71
|
+
</li>
|
|
72
|
+
<li class="class">
|
|
73
|
+
<a href="CORL/Action/Ip.html">CORL::Action::Ip</a>
|
|
74
|
+
</li>
|
|
75
|
+
<li class="class">
|
|
76
|
+
<a href="CORL/Action/Keypair.html">CORL::Action::Keypair</a>
|
|
77
|
+
</li>
|
|
78
|
+
<li class="class">
|
|
79
|
+
<a href="CORL/Action/Lookup.html">CORL::Action::Lookup</a>
|
|
80
|
+
</li>
|
|
81
|
+
<li class="class">
|
|
82
|
+
<a href="CORL/Action/Machines.html">CORL::Action::Machines</a>
|
|
83
|
+
</li>
|
|
84
|
+
<li class="class">
|
|
85
|
+
<a href="CORL/Action/Provision.html">CORL::Action::Provision</a>
|
|
86
|
+
</li>
|
|
87
|
+
<li class="class">
|
|
88
|
+
<a href="CORL/Action/Reboot.html">CORL::Action::Reboot</a>
|
|
89
|
+
</li>
|
|
90
|
+
<li class="class">
|
|
91
|
+
<a href="CORL/Action/Regions.html">CORL::Action::Regions</a>
|
|
92
|
+
</li>
|
|
93
|
+
<li class="class">
|
|
94
|
+
<a href="CORL/Action/Revoke.html">CORL::Action::Revoke</a>
|
|
95
|
+
</li>
|
|
96
|
+
<li class="class">
|
|
97
|
+
<a href="CORL/Action/Seed.html">CORL::Action::Seed</a>
|
|
98
|
+
</li>
|
|
99
|
+
<li class="class">
|
|
100
|
+
<a href="CORL/Action/Spawn.html">CORL::Action::Spawn</a>
|
|
101
|
+
</li>
|
|
102
|
+
<li class="class">
|
|
103
|
+
<a href="CORL/Action/Ssh.html">CORL::Action::Ssh</a>
|
|
104
|
+
</li>
|
|
105
|
+
<li class="class">
|
|
106
|
+
<a href="CORL/Action/Start.html">CORL::Action::Start</a>
|
|
107
|
+
</li>
|
|
108
|
+
<li class="class">
|
|
109
|
+
<a href="CORL/Action/Stop.html">CORL::Action::Stop</a>
|
|
110
|
+
</li>
|
|
111
|
+
<li class="class">
|
|
112
|
+
<a href="CORL/Action/Vagrantfile.html">CORL::Action::Vagrantfile</a>
|
|
113
|
+
</li>
|
|
114
|
+
<li class="module">
|
|
115
|
+
<a href="CORL/Configuration.html">CORL::Configuration</a>
|
|
116
|
+
</li>
|
|
117
|
+
<li class="class">
|
|
118
|
+
<a href="CORL/Configuration/File.html">CORL::Configuration::File</a>
|
|
119
|
+
</li>
|
|
120
|
+
<li class="module">
|
|
121
|
+
<a href="CORL/Errors.html">CORL::Errors</a>
|
|
122
|
+
</li>
|
|
123
|
+
<li class="module">
|
|
124
|
+
<a href="CORL/Event.html">CORL::Event</a>
|
|
125
|
+
</li>
|
|
126
|
+
<li class="class">
|
|
127
|
+
<a href="CORL/Event/Puppet.html">CORL::Event::Puppet</a>
|
|
128
|
+
</li>
|
|
129
|
+
<li class="module">
|
|
130
|
+
<a href="CORL/Facade.html">CORL::Facade</a>
|
|
131
|
+
</li>
|
|
132
|
+
<li class="module">
|
|
133
|
+
<a href="CORL/Machine.html">CORL::Machine</a>
|
|
134
|
+
</li>
|
|
135
|
+
<li class="class">
|
|
136
|
+
<a href="CORL/Machine/Aws.html">CORL::Machine::Aws</a>
|
|
137
|
+
</li>
|
|
138
|
+
<li class="class">
|
|
139
|
+
<a href="CORL/Machine/Fog.html">CORL::Machine::Fog</a>
|
|
140
|
+
</li>
|
|
141
|
+
<li class="class">
|
|
142
|
+
<a href="CORL/Machine/Physical.html">CORL::Machine::Physical</a>
|
|
143
|
+
</li>
|
|
144
|
+
<li class="class">
|
|
145
|
+
<a href="CORL/Machine/Rackspace.html">CORL::Machine::Rackspace</a>
|
|
146
|
+
</li>
|
|
147
|
+
<li class="class">
|
|
148
|
+
<a href="CORL/Machine/Vagrant.html">CORL::Machine::Vagrant</a>
|
|
149
|
+
</li>
|
|
150
|
+
<li class="module">
|
|
151
|
+
<a href="CORL/Mixin.html">CORL::Mixin</a>
|
|
152
|
+
</li>
|
|
153
|
+
<li class="module">
|
|
154
|
+
<a href="CORL/Mixin/Action.html">CORL::Mixin::Action</a>
|
|
155
|
+
</li>
|
|
156
|
+
<li class="module">
|
|
157
|
+
<a href="CORL/Mixin/Action/Keypair.html">CORL::Mixin::Action::Keypair</a>
|
|
158
|
+
</li>
|
|
159
|
+
<li class="module">
|
|
160
|
+
<a href="CORL/Mixin/Lookup.html">CORL::Mixin::Lookup</a>
|
|
161
|
+
</li>
|
|
162
|
+
<li class="module">
|
|
163
|
+
<a href="CORL/Mixin/Machine.html">CORL::Mixin::Machine</a>
|
|
164
|
+
</li>
|
|
165
|
+
<li class="module">
|
|
166
|
+
<a href="CORL/Mixin/Machine/SSH.html">CORL::Mixin::Machine::SSH</a>
|
|
167
|
+
</li>
|
|
168
|
+
<li class="module">
|
|
169
|
+
<a href="CORL/Mixin/Macro.html">CORL::Mixin::Macro</a>
|
|
170
|
+
</li>
|
|
171
|
+
<li class="module">
|
|
172
|
+
<a href="CORL/Mixin/Macro/NetworkSettings.html">CORL::Mixin::Macro::NetworkSettings</a>
|
|
173
|
+
</li>
|
|
174
|
+
<li class="module">
|
|
175
|
+
<a href="CORL/Network.html">CORL::Network</a>
|
|
176
|
+
</li>
|
|
177
|
+
<li class="class">
|
|
178
|
+
<a href="CORL/Network/Default.html">CORL::Network::Default</a>
|
|
179
|
+
</li>
|
|
180
|
+
<li class="module">
|
|
181
|
+
<a href="CORL/Node.html">CORL::Node</a>
|
|
182
|
+
</li>
|
|
183
|
+
<li class="class">
|
|
184
|
+
<a href="CORL/Node/Aws.html">CORL::Node::Aws</a>
|
|
185
|
+
</li>
|
|
186
|
+
<li class="class">
|
|
187
|
+
<a href="CORL/Node/Fog.html">CORL::Node::Fog</a>
|
|
188
|
+
</li>
|
|
189
|
+
<li class="class">
|
|
190
|
+
<a href="CORL/Node/Local.html">CORL::Node::Local</a>
|
|
191
|
+
</li>
|
|
192
|
+
<li class="class">
|
|
193
|
+
<a href="CORL/Node/Rackspace.html">CORL::Node::Rackspace</a>
|
|
194
|
+
</li>
|
|
195
|
+
<li class="class">
|
|
196
|
+
<a href="CORL/Node/Vagrant.html">CORL::Node::Vagrant</a>
|
|
197
|
+
</li>
|
|
198
|
+
<li class="module">
|
|
199
|
+
<a href="CORL/Plugin.html">CORL::Plugin</a>
|
|
200
|
+
</li>
|
|
201
|
+
<li class="class">
|
|
202
|
+
<a href="CORL/Plugin/CloudAction.html">CORL::Plugin::CloudAction</a>
|
|
203
|
+
</li>
|
|
204
|
+
<li class="module">
|
|
205
|
+
<a href="CORL/Provisioner.html">CORL::Provisioner</a>
|
|
206
|
+
</li>
|
|
207
|
+
<li class="class">
|
|
208
|
+
<a href="CORL/Provisioner/Puppetnode.html">CORL::Provisioner::Puppetnode</a>
|
|
209
|
+
</li>
|
|
210
|
+
<li class="module">
|
|
211
|
+
<a href="CORL/Template.html">CORL::Template</a>
|
|
212
|
+
</li>
|
|
213
|
+
<li class="class">
|
|
214
|
+
<a href="CORL/Template/Environment.html">CORL::Template::Environment</a>
|
|
215
|
+
</li>
|
|
216
|
+
<li class="module">
|
|
217
|
+
<a href="CORL/Util.html">CORL::Util</a>
|
|
218
|
+
</li>
|
|
219
|
+
<li class="module">
|
|
220
|
+
<a href="CORL/Util/Puppet.html">CORL::Util::Puppet</a>
|
|
221
|
+
</li>
|
|
222
|
+
<li class="class">
|
|
223
|
+
<a href="CORL/Util/Puppet/Resource.html">CORL::Util::Puppet::Resource</a>
|
|
224
|
+
</li>
|
|
225
|
+
<li class="class">
|
|
226
|
+
<a href="CORL/Util/Puppet/ResourceGroup.html">CORL::Util::Puppet::ResourceGroup</a>
|
|
227
|
+
</li>
|
|
228
|
+
<li class="module">
|
|
229
|
+
<a href="CORL/Vagrant.html">CORL::Vagrant</a>
|
|
230
|
+
</li>
|
|
231
|
+
<li class="module">
|
|
232
|
+
<a href="CORL/Vagrant/Config.html">CORL::Vagrant::Config</a>
|
|
233
|
+
</li>
|
|
234
|
+
<li class="module">
|
|
235
|
+
<a href="VagrantPlugins.html">VagrantPlugins</a>
|
|
236
|
+
</li>
|
|
237
|
+
<li class="module">
|
|
238
|
+
<a href="VagrantPlugins/CORL.html">VagrantPlugins::CORL</a>
|
|
239
|
+
</li>
|
|
240
|
+
<li class="module">
|
|
241
|
+
<a href="VagrantPlugins/CORL/Action.html">VagrantPlugins::CORL::Action</a>
|
|
242
|
+
</li>
|
|
243
|
+
<li class="class">
|
|
244
|
+
<a href="VagrantPlugins/CORL/Action/DeleteCache.html">VagrantPlugins::CORL::Action::DeleteCache</a>
|
|
245
|
+
</li>
|
|
246
|
+
<li class="class">
|
|
247
|
+
<a href="VagrantPlugins/CORL/Action/InitKeys.html">VagrantPlugins::CORL::Action::InitKeys</a>
|
|
248
|
+
</li>
|
|
249
|
+
<li class="class">
|
|
250
|
+
<a href="VagrantPlugins/CORL/Action/LinkNetwork.html">VagrantPlugins::CORL::Action::LinkNetwork</a>
|
|
251
|
+
</li>
|
|
252
|
+
<li class="class">
|
|
253
|
+
<a href="VagrantPlugins/CORL/BaseAction.html">VagrantPlugins::CORL::BaseAction</a>
|
|
254
|
+
</li>
|
|
255
|
+
<li class="module">
|
|
256
|
+
<a href="VagrantPlugins/CORL/Command.html">VagrantPlugins::CORL::Command</a>
|
|
257
|
+
</li>
|
|
258
|
+
<li class="class">
|
|
259
|
+
<a href="VagrantPlugins/CORL/Command/Launcher.html">VagrantPlugins::CORL::Command::Launcher</a>
|
|
260
|
+
</li>
|
|
261
|
+
<li class="module">
|
|
262
|
+
<a href="VagrantPlugins/CORL/Config.html">VagrantPlugins::CORL::Config</a>
|
|
263
|
+
</li>
|
|
264
|
+
<li class="class">
|
|
265
|
+
<a href="VagrantPlugins/CORL/Config/CORL.html">VagrantPlugins::CORL::Config::CORL</a>
|
|
266
|
+
</li>
|
|
267
|
+
<li class="class">
|
|
268
|
+
<a href="VagrantPlugins/CORL/Plugin.html">VagrantPlugins::CORL::Plugin</a>
|
|
269
|
+
</li>
|
|
270
|
+
<li class="module">
|
|
271
|
+
<a href="VagrantPlugins/CORL/Provisioner.html">VagrantPlugins::CORL::Provisioner</a>
|
|
272
|
+
</li>
|
|
273
|
+
<li class="class">
|
|
274
|
+
<a href="VagrantPlugins/CORL/Provisioner/CORL.html">VagrantPlugins::CORL::Provisioner::CORL</a>
|
|
275
|
+
</li>
|
|
276
|
+
<li class="module">
|
|
277
|
+
<a href="Nucleon.html">Nucleon</a>
|
|
278
|
+
</li>
|
|
279
|
+
<li class="class">
|
|
280
|
+
<a href="Nucleon/Config.html">Nucleon::Config</a>
|
|
281
|
+
</li>
|
|
282
|
+
<li class="module">
|
|
283
|
+
<a href="Nucleon/Plugin.html">Nucleon::Plugin</a>
|
|
284
|
+
</li>
|
|
285
|
+
<li class="class">
|
|
286
|
+
<a href="Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
|
|
287
|
+
</li>
|
|
288
|
+
<li class="class">
|
|
289
|
+
<a href="Nucleon/Plugin/Configuration.html">Nucleon::Plugin::Configuration</a>
|
|
290
|
+
</li>
|
|
291
|
+
<li class="class">
|
|
292
|
+
<a href="Nucleon/Plugin/Machine.html">Nucleon::Plugin::Machine</a>
|
|
293
|
+
</li>
|
|
294
|
+
<li class="class">
|
|
295
|
+
<a href="Nucleon/Plugin/Network.html">Nucleon::Plugin::Network</a>
|
|
296
|
+
</li>
|
|
297
|
+
<li class="class">
|
|
298
|
+
<a href="Nucleon/Plugin/Node.html">Nucleon::Plugin::Node</a>
|
|
299
|
+
</li>
|
|
300
|
+
<li class="class">
|
|
301
|
+
<a href="Nucleon/Plugin/Provisioner.html">Nucleon::Plugin::Provisioner</a>
|
|
302
|
+
</li>
|
|
303
|
+
<li class="module">
|
|
304
|
+
<a href="Puppet.html">Puppet</a>
|
|
305
|
+
</li>
|
|
306
|
+
<li class="module">
|
|
307
|
+
<a href="Puppet/DataBinding.html">Puppet::DataBinding</a>
|
|
308
|
+
</li>
|
|
309
|
+
<li class="class">
|
|
310
|
+
<a href="Puppet/DataBinding/Corl.html">Puppet::DataBinding::Corl</a>
|
|
311
|
+
</li>
|
|
312
|
+
<li class="module">
|
|
313
|
+
<a href="Puppet/Indirector.html">Puppet::Indirector</a>
|
|
314
|
+
</li>
|
|
315
|
+
<li class="class">
|
|
316
|
+
<a href="Puppet/Indirector/Corl.html">Puppet::Indirector::Corl</a>
|
|
317
|
+
</li>
|
|
318
|
+
<li class="module">
|
|
319
|
+
<a href="Puppet/Parser.html">Puppet::Parser</a>
|
|
320
|
+
</li>
|
|
321
|
+
<li class="module">
|
|
322
|
+
<a href="Puppet/Parser/Functions.html">Puppet::Parser::Functions</a>
|
|
323
|
+
</li>
|
|
324
|
+
<li class="module">
|
|
325
|
+
<a href="Fog.html">Fog</a>
|
|
326
|
+
</li>
|
|
327
|
+
<li class="module">
|
|
328
|
+
<a href="Fog/Compute.html">Fog::Compute</a>
|
|
329
|
+
</li>
|
|
330
|
+
<li class="class">
|
|
331
|
+
<a href="Fog/Compute/AWS.html">Fog::Compute::AWS</a>
|
|
332
|
+
</li>
|
|
333
|
+
<li class="class">
|
|
334
|
+
<a href="Fog/Compute/AWS/Server.html">Fog::Compute::AWS::Server</a>
|
|
335
|
+
</li>
|
|
336
|
+
<li class="class">
|
|
337
|
+
<a href="Fog/Compute/RackspaceV2.html">Fog::Compute::RackspaceV2</a>
|
|
338
|
+
</li>
|
|
339
|
+
<li class="class">
|
|
340
|
+
<a href="Fog/Compute/RackspaceV2/Server.html">Fog::Compute::RackspaceV2::Server</a>
|
|
341
|
+
</li>
|
|
342
|
+
<li class="module">
|
|
343
|
+
<a href="Vagrant.html">Vagrant</a>
|
|
344
|
+
</li>
|
|
345
|
+
<li class="module">
|
|
346
|
+
<a href="Vagrant/Config.html">Vagrant::Config</a>
|
|
347
|
+
</li>
|
|
348
|
+
<li class="class">
|
|
349
|
+
<a href="Vagrant/Config/Loader.html">Vagrant::Config::Loader</a>
|
|
350
|
+
</li>
|
|
351
|
+
<li class="class">
|
|
352
|
+
<a href="Vagrant/Vagrantfile.html">Vagrant::Vagrantfile</a>
|
|
353
|
+
</li>
|
|
354
|
+
<li class="module">
|
|
355
|
+
<a href="Facter.html">Facter</a>
|
|
356
|
+
</li>
|
|
357
|
+
<li class="module">
|
|
358
|
+
<a href="Facter/Util.html">Facter::Util</a>
|
|
359
|
+
</li>
|
|
360
|
+
<li class="class">
|
|
361
|
+
<a href="Facter/Util/Loader.html">Facter::Util::Loader</a>
|
|
362
|
+
</li>
|
|
363
|
+
<li class="class">
|
|
364
|
+
<a href="Hiera.html">Hiera</a>
|
|
365
|
+
</li>
|
|
366
|
+
<li class="module">
|
|
367
|
+
<a href="Hiera/Backend.html">Hiera::Backend</a>
|
|
368
|
+
</li>
|
|
369
|
+
<li class="module">
|
|
370
|
+
<a href="Hiera/Corl_logger.html">Hiera::Corl_logger</a>
|
|
371
|
+
</li>
|
|
372
|
+
<li class="class">
|
|
373
|
+
<a href="Object.html">Object</a>
|
|
374
|
+
</li>
|
|
375
|
+
|
|
376
|
+
</ul>
|
|
377
|
+
|
|
378
|
+
<h2 id="methods">Methods</h2>
|
|
379
|
+
<ul>
|
|
380
|
+
|
|
381
|
+
<li class="method"><a href="CORL.html#method-c-VERSION">::VERSION — CORL</a>
|
|
382
|
+
|
|
383
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-add">::add — CORL::Util::Puppet</a>
|
|
384
|
+
|
|
385
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-add_class">::add_class — CORL::Util::Puppet</a>
|
|
386
|
+
|
|
387
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-add_definition">::add_definition — CORL::Util::Puppet</a>
|
|
388
|
+
|
|
389
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-add_resource">::add_resource — CORL::Util::Puppet</a>
|
|
390
|
+
|
|
391
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-c-build_info">::build_info — Nucleon::Plugin::Provisioner</a>
|
|
392
|
+
|
|
393
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-c-build_info">::build_info — Nucleon::Plugin::Node</a>
|
|
394
|
+
|
|
395
|
+
<li class="method"><a href="CORL/Vagrant.html#method-c-command">::command — CORL::Vagrant</a>
|
|
396
|
+
|
|
397
|
+
<li class="method"><a href="CORL/Vagrant.html#method-c-command-3D">::command= — CORL::Vagrant</a>
|
|
398
|
+
|
|
399
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_provisioner">::configure_provisioner — CORL::Vagrant::Config</a>
|
|
400
|
+
|
|
401
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_shares">::configure_shares — CORL::Vagrant::Config</a>
|
|
402
|
+
|
|
403
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_ssh">::configure_ssh — CORL::Vagrant::Config</a>
|
|
404
|
+
|
|
405
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_vagrant">::configure_vagrant — CORL::Vagrant::Config</a>
|
|
406
|
+
|
|
407
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-configure_vm">::configure_vm — CORL::Vagrant::Config</a>
|
|
408
|
+
|
|
409
|
+
<li class="method"><a href="Hiera/Corl_logger.html#method-c-debug">::debug — Hiera::Corl_logger</a>
|
|
410
|
+
|
|
411
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-debug_resource">::debug_resource — CORL::Util::Puppet</a>
|
|
412
|
+
|
|
413
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-each_module">::each_module — CORL::Util::Puppet</a>
|
|
414
|
+
|
|
415
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-import">::import — CORL::Util::Puppet</a>
|
|
416
|
+
|
|
417
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-include">::include — CORL::Util::Puppet</a>
|
|
418
|
+
|
|
419
|
+
<li class="method"><a href="CORL.html#method-c-lib_path">::lib_path — CORL</a>
|
|
420
|
+
|
|
421
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-load_network">::load_network — CORL::Vagrant::Config</a>
|
|
422
|
+
|
|
423
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-logger">::logger — CORL::Util::Puppet</a>
|
|
424
|
+
|
|
425
|
+
<li class="method"><a href="Hiera/Backend.html#method-c-lookup">::lookup — Hiera::Backend</a>
|
|
426
|
+
|
|
427
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-lookup">::lookup — CORL::Util::Puppet</a>
|
|
428
|
+
|
|
429
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-namevar">::namevar — CORL::Util::Puppet</a>
|
|
430
|
+
|
|
431
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-network">::network — CORL::Vagrant::Config</a>
|
|
432
|
+
|
|
433
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-network-3D">::network= — CORL::Vagrant::Config</a>
|
|
434
|
+
|
|
435
|
+
<li class="method"><a href="Puppet/Indirector/Corl.html#method-c-new">::new — Puppet::Indirector::Corl</a>
|
|
436
|
+
|
|
437
|
+
<li class="method"><a href="VagrantPlugins/CORL/Config/CORL.html#method-c-new">::new — VagrantPlugins::CORL::Config::CORL</a>
|
|
438
|
+
|
|
439
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-c-new">::new — CORL::Util::Puppet::Resource</a>
|
|
440
|
+
|
|
441
|
+
<li class="method"><a href="VagrantPlugins/CORL/BaseAction.html#method-c-new">::new — VagrantPlugins::CORL::BaseAction</a>
|
|
442
|
+
|
|
443
|
+
<li class="method"><a href="VagrantPlugins/CORL/Provisioner/CORL.html#method-c-new">::new — VagrantPlugins::CORL::Provisioner::CORL</a>
|
|
444
|
+
|
|
445
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-c-new">::new — CORL::Util::Puppet::ResourceGroup</a>
|
|
446
|
+
|
|
447
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-parse_params">::parse_params — CORL::Vagrant::Config</a>
|
|
448
|
+
|
|
449
|
+
<li class="method"><a href="CORL/Vagrant/Config.html#method-c-register">::register — CORL::Vagrant::Config</a>
|
|
450
|
+
|
|
451
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-register_plugins">::register_plugins — CORL::Util::Puppet</a>
|
|
452
|
+
|
|
453
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-c-render">::render — CORL::Util::Puppet::Resource</a>
|
|
454
|
+
|
|
455
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-c-status">::status — CORL::Provisioner::Puppetnode</a>
|
|
456
|
+
|
|
457
|
+
<li class="method"><a href="Hiera/Corl_logger.html#method-c-suitable-3F">::suitable? — Hiera::Corl_logger</a>
|
|
458
|
+
|
|
459
|
+
<li class="method"><a href="VagrantPlugins/CORL/Command/Launcher.html#method-c-synopsis">::synopsis — VagrantPlugins::CORL::Command::Launcher</a>
|
|
460
|
+
|
|
461
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-to_name">::to_name — CORL::Util::Puppet</a>
|
|
462
|
+
|
|
463
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-c-translate">::translate — Nucleon::Plugin::Node</a>
|
|
464
|
+
|
|
465
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-c-translate">::translate — Nucleon::Plugin::Provisioner</a>
|
|
466
|
+
|
|
467
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-c-translate_reference">::translate_reference — Nucleon::Plugin::Provisioner</a>
|
|
468
|
+
|
|
469
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-c-translate_reference">::translate_reference — Nucleon::Plugin::Node</a>
|
|
470
|
+
|
|
471
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-type_info">::type_info — CORL::Util::Puppet</a>
|
|
472
|
+
|
|
473
|
+
<li class="method"><a href="CORL/Util/Puppet.html#method-c-type_name">::type_name — CORL::Util::Puppet</a>
|
|
474
|
+
|
|
475
|
+
<li class="method"><a href="Hiera/Corl_logger.html#method-c-warn">::warn — Hiera::Corl_logger</a>
|
|
476
|
+
|
|
477
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-action">#action — Nucleon::Plugin::Node</a>
|
|
478
|
+
|
|
479
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-add">#add — CORL::Util::Puppet::ResourceGroup</a>
|
|
480
|
+
|
|
481
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-add_composite_resource">#add_composite_resource — CORL::Util::Puppet::ResourceGroup</a>
|
|
482
|
+
|
|
483
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-add_node">#add_node — Nucleon::Plugin::Network</a>
|
|
484
|
+
|
|
485
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-add_search_path">#add_search_path — CORL::Provisioner::Puppetnode</a>
|
|
486
|
+
|
|
487
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-api_key">#api_key — CORL::Node::Fog</a>
|
|
488
|
+
|
|
489
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-api_key-3D">#api_key= — CORL::Node::Fog</a>
|
|
490
|
+
|
|
491
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-api_user">#api_user — CORL::Node::Fog</a>
|
|
492
|
+
|
|
493
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-api_user-3D">#api_user= — CORL::Node::Fog</a>
|
|
494
|
+
|
|
495
|
+
<li class="method"><a href="CORL/Action/Image.html#method-i-arguments">#arguments — CORL::Action::Image</a>
|
|
496
|
+
|
|
497
|
+
<li class="method"><a href="CORL/Action/Ssh.html#method-i-arguments">#arguments — CORL::Action::Ssh</a>
|
|
498
|
+
|
|
499
|
+
<li class="method"><a href="CORL/Action/Spawn.html#method-i-arguments">#arguments — CORL::Action::Spawn</a>
|
|
500
|
+
|
|
501
|
+
<li class="method"><a href="CORL/Action/Seed.html#method-i-arguments">#arguments — CORL::Action::Seed</a>
|
|
502
|
+
|
|
503
|
+
<li class="method"><a href="CORL/Action/Images.html#method-i-arguments">#arguments — CORL::Action::Images</a>
|
|
504
|
+
|
|
505
|
+
<li class="method"><a href="CORL/Action/Start.html#method-i-arguments">#arguments — CORL::Action::Start</a>
|
|
506
|
+
|
|
507
|
+
<li class="method"><a href="CORL/Action/Reboot.html#method-i-arguments">#arguments — CORL::Action::Reboot</a>
|
|
508
|
+
|
|
509
|
+
<li class="method"><a href="CORL/Action/Exec.html#method-i-arguments">#arguments — CORL::Action::Exec</a>
|
|
510
|
+
|
|
511
|
+
<li class="method"><a href="CORL/Action/Bootstrap.html#method-i-arguments">#arguments — CORL::Action::Bootstrap</a>
|
|
512
|
+
|
|
513
|
+
<li class="method"><a href="CORL/Action/Stop.html#method-i-arguments">#arguments — CORL::Action::Stop</a>
|
|
514
|
+
|
|
515
|
+
<li class="method"><a href="CORL/Action/Revoke.html#method-i-arguments">#arguments — CORL::Action::Revoke</a>
|
|
516
|
+
|
|
517
|
+
<li class="method"><a href="CORL/Action/Lookup.html#method-i-arguments">#arguments — CORL::Action::Lookup</a>
|
|
518
|
+
|
|
519
|
+
<li class="method"><a href="CORL/Action/Authorize.html#method-i-arguments">#arguments — CORL::Action::Authorize</a>
|
|
520
|
+
|
|
521
|
+
<li class="method"><a href="CORL/Action/Destroy.html#method-i-arguments">#arguments — CORL::Action::Destroy</a>
|
|
522
|
+
|
|
523
|
+
<li class="method"><a href="CORL/Action/Regions.html#method-i-arguments">#arguments — CORL::Action::Regions</a>
|
|
524
|
+
|
|
525
|
+
<li class="method"><a href="CORL/Action/Machines.html#method-i-arguments">#arguments — CORL::Action::Machines</a>
|
|
526
|
+
|
|
527
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-attach">#attach — Nucleon::Plugin::Configuration</a>
|
|
528
|
+
|
|
529
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-attach">#attach — CORL::Configuration::File</a>
|
|
530
|
+
|
|
531
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-attach_data">#attach_data — Nucleon::Plugin::Network</a>
|
|
532
|
+
|
|
533
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-attach_files">#attach_files — Nucleon::Plugin::Network</a>
|
|
534
|
+
|
|
535
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-attach_keys">#attach_keys — Nucleon::Plugin::Node</a>
|
|
536
|
+
|
|
537
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-auth_url">#auth_url — CORL::Node::Fog</a>
|
|
538
|
+
|
|
539
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-auth_url-3D">#auth_url= — CORL::Node::Fog</a>
|
|
540
|
+
|
|
541
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-autoload">#autoload — Nucleon::Plugin::Configuration</a>
|
|
542
|
+
|
|
543
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-autoload-3D">#autoload= — Nucleon::Plugin::Configuration</a>
|
|
544
|
+
|
|
545
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-autosave">#autosave — Nucleon::Plugin::Configuration</a>
|
|
546
|
+
|
|
547
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-autosave-3D">#autosave= — Nucleon::Plugin::Configuration</a>
|
|
548
|
+
|
|
549
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-batch">#batch — Nucleon::Plugin::Network</a>
|
|
550
|
+
|
|
551
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-bootstrap">#bootstrap — Nucleon::Plugin::Node</a>
|
|
552
|
+
|
|
553
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-bootstrap_script">#bootstrap_script — CORL::Node::Vagrant</a>
|
|
554
|
+
|
|
555
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-bootstrap_script">#bootstrap_script — Nucleon::Plugin::Node</a>
|
|
556
|
+
|
|
557
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-bootstrap_script-3D">#bootstrap_script= — CORL::Node::Vagrant</a>
|
|
558
|
+
|
|
559
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-bootstrap_script-3D">#bootstrap_script= — Nucleon::Plugin::Node</a>
|
|
560
|
+
|
|
561
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-build">#build — CORL::Node::Vagrant</a>
|
|
562
|
+
|
|
563
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build">#build — Nucleon::Plugin::Provisioner</a>
|
|
564
|
+
|
|
565
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-build">#build — CORL::Provisioner::Puppetnode</a>
|
|
566
|
+
|
|
567
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-build">#build — Nucleon::Plugin::Node</a>
|
|
568
|
+
|
|
569
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-build_directory">#build_directory — Nucleon::Plugin::Network</a>
|
|
570
|
+
|
|
571
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build_directory">#build_directory — Nucleon::Plugin::Provisioner</a>
|
|
572
|
+
|
|
573
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build_info">#build_info — Nucleon::Plugin::Provisioner</a>
|
|
574
|
+
|
|
575
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build_locations">#build_locations — Nucleon::Plugin::Provisioner</a>
|
|
576
|
+
|
|
577
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-build_profiles">#build_profiles — Nucleon::Plugin::Provisioner</a>
|
|
578
|
+
|
|
579
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-build_time">#build_time — Nucleon::Plugin::Node</a>
|
|
580
|
+
|
|
581
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-build_time">#build_time — CORL::Node::Vagrant</a>
|
|
582
|
+
|
|
583
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-build_time-3D">#build_time= — Nucleon::Plugin::Node</a>
|
|
584
|
+
|
|
585
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-build_time-3D">#build_time= — CORL::Node::Vagrant</a>
|
|
586
|
+
|
|
587
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-cache">#cache — Nucleon::Plugin::Network</a>
|
|
588
|
+
|
|
589
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-cache">#cache — Nucleon::Plugin::Configuration</a>
|
|
590
|
+
|
|
591
|
+
<li class="method"><a href="VagrantPlugins/CORL/BaseAction.html#method-i-call">#call — VagrantPlugins::CORL::BaseAction</a>
|
|
592
|
+
|
|
593
|
+
<li class="method"><a href="VagrantPlugins/CORL/Action/InitKeys.html#method-i-call">#call — VagrantPlugins::CORL::Action::InitKeys</a>
|
|
594
|
+
|
|
595
|
+
<li class="method"><a href="VagrantPlugins/CORL/Action/LinkNetwork.html#method-i-call">#call — VagrantPlugins::CORL::Action::LinkNetwork</a>
|
|
596
|
+
|
|
597
|
+
<li class="method"><a href="VagrantPlugins/CORL/Action/DeleteCache.html#method-i-call">#call — VagrantPlugins::CORL::Action::DeleteCache</a>
|
|
598
|
+
|
|
599
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-can_persist-3F">#can_persist? — Nucleon::Plugin::Configuration</a>
|
|
600
|
+
|
|
601
|
+
<li class="method"><a href="CORL/Event/Puppet.html#method-i-check">#check — CORL::Event::Puppet</a>
|
|
602
|
+
|
|
603
|
+
<li class="method"><a href="VagrantPlugins/CORL/Provisioner/CORL.html#method-i-clean">#clean — VagrantPlugins::CORL::Provisioner::CORL</a>
|
|
604
|
+
|
|
605
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-clear">#clear — Nucleon::Plugin::Configuration</a>
|
|
606
|
+
|
|
607
|
+
<li class="method"><a href="Vagrant/Config/Loader.html#method-i-clear_config_cache">#clear_config_cache — Vagrant::Config::Loader</a>
|
|
608
|
+
|
|
609
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-cli">#cli — Nucleon::Plugin::Node</a>
|
|
610
|
+
|
|
611
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-cli_capture">#cli_capture — Nucleon::Plugin::Node</a>
|
|
612
|
+
|
|
613
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-cli_check">#cli_check — Nucleon::Plugin::Node</a>
|
|
614
|
+
|
|
615
|
+
<li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-close_ssh_session">#close_ssh_session — CORL::Mixin::Machine::SSH</a>
|
|
616
|
+
|
|
617
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-command">#command — Nucleon::Plugin::Node</a>
|
|
618
|
+
|
|
619
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-command">#command — CORL::Machine::Vagrant</a>
|
|
620
|
+
|
|
621
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-compiler">#compiler — CORL::Provisioner::Puppetnode</a>
|
|
622
|
+
|
|
623
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-composite_resources">#composite_resources — CORL::Util::Puppet::ResourceGroup</a>
|
|
624
|
+
|
|
625
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-composite_resources-3D">#composite_resources= — CORL::Util::Puppet::ResourceGroup</a>
|
|
626
|
+
|
|
627
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-compute">#compute — CORL::Machine::Fog</a>
|
|
628
|
+
|
|
629
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-compute-3D">#compute= — CORL::Machine::Fog</a>
|
|
630
|
+
|
|
631
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-concatenate">#concatenate — CORL::Provisioner::Puppetnode</a>
|
|
632
|
+
|
|
633
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-concatenate">#concatenate — Nucleon::Plugin::Provisioner</a>
|
|
634
|
+
|
|
635
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-config_initialized-3F">#config_initialized? — CORL::Mixin::Lookup</a>
|
|
636
|
+
|
|
637
|
+
<li class="method"><a href="CORL/Facade.html#method-i-configuration">#configuration — CORL::Facade</a>
|
|
638
|
+
|
|
639
|
+
<li class="method"><a href="CORL/Facade.html#method-i-configurations">#configurations — CORL::Facade</a>
|
|
640
|
+
|
|
641
|
+
<li class="method"><a href="CORL/Action/Images.html#method-i-configure">#configure — CORL::Action::Images</a>
|
|
642
|
+
|
|
643
|
+
<li class="method"><a href="CORL/Action/Start.html#method-i-configure">#configure — CORL::Action::Start</a>
|
|
644
|
+
|
|
645
|
+
<li class="method"><a href="CORL/Action/Machines.html#method-i-configure">#configure — CORL::Action::Machines</a>
|
|
646
|
+
|
|
647
|
+
<li class="method"><a href="CORL/Action/Provision.html#method-i-configure">#configure — CORL::Action::Provision</a>
|
|
648
|
+
|
|
649
|
+
<li class="method"><a href="CORL/Action/Stop.html#method-i-configure">#configure — CORL::Action::Stop</a>
|
|
650
|
+
|
|
651
|
+
<li class="method"><a href="CORL/Action/Keypair.html#method-i-configure">#configure — CORL::Action::Keypair</a>
|
|
652
|
+
|
|
653
|
+
<li class="method"><a href="CORL/Action/Ssh.html#method-i-configure">#configure — CORL::Action::Ssh</a>
|
|
654
|
+
|
|
655
|
+
<li class="method"><a href="CORL/Action/Image.html#method-i-configure">#configure — CORL::Action::Image</a>
|
|
656
|
+
|
|
657
|
+
<li class="method"><a href="CORL/Action/Reboot.html#method-i-configure">#configure — CORL::Action::Reboot</a>
|
|
658
|
+
|
|
659
|
+
<li class="method"><a href="CORL/Action/Regions.html#method-i-configure">#configure — CORL::Action::Regions</a>
|
|
660
|
+
|
|
661
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-configure">#configure — CORL::Plugin::CloudAction</a>
|
|
662
|
+
|
|
663
|
+
<li class="method"><a href="CORL/Action/Revoke.html#method-i-configure">#configure — CORL::Action::Revoke</a>
|
|
664
|
+
|
|
665
|
+
<li class="method"><a href="CORL/Action/Exec.html#method-i-configure">#configure — CORL::Action::Exec</a>
|
|
666
|
+
|
|
667
|
+
<li class="method"><a href="CORL/Action/Vagrantfile.html#method-i-configure">#configure — CORL::Action::Vagrantfile</a>
|
|
668
|
+
|
|
669
|
+
<li class="method"><a href="VagrantPlugins/CORL/Provisioner/CORL.html#method-i-configure">#configure — VagrantPlugins::CORL::Provisioner::CORL</a>
|
|
670
|
+
|
|
671
|
+
<li class="method"><a href="CORL/Action/Destroy.html#method-i-configure">#configure — CORL::Action::Destroy</a>
|
|
672
|
+
|
|
673
|
+
<li class="method"><a href="CORL/Action/Seed.html#method-i-configure">#configure — CORL::Action::Seed</a>
|
|
674
|
+
|
|
675
|
+
<li class="method"><a href="CORL/Action/Bootstrap.html#method-i-configure">#configure — CORL::Action::Bootstrap</a>
|
|
676
|
+
|
|
677
|
+
<li class="method"><a href="CORL/Action/Spawn.html#method-i-configure">#configure — CORL::Action::Spawn</a>
|
|
678
|
+
|
|
679
|
+
<li class="method"><a href="CORL/Action/Lookup.html#method-i-configure">#configure — CORL::Action::Lookup</a>
|
|
680
|
+
|
|
681
|
+
<li class="method"><a href="CORL/Action/Authorize.html#method-i-configure">#configure — CORL::Action::Authorize</a>
|
|
682
|
+
|
|
683
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-connection_options">#connection_options — CORL::Node::Fog</a>
|
|
684
|
+
|
|
685
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-connection_options-3D">#connection_options= — CORL::Node::Fog</a>
|
|
686
|
+
|
|
687
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-create">#create — CORL::Node::Aws</a>
|
|
688
|
+
|
|
689
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-create">#create — Nucleon::Plugin::Node</a>
|
|
690
|
+
|
|
691
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-create">#create — CORL::Node::Rackspace</a>
|
|
692
|
+
|
|
693
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-create">#create — CORL::Machine::Vagrant</a>
|
|
694
|
+
|
|
695
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-create">#create — Nucleon::Plugin::Machine</a>
|
|
696
|
+
|
|
697
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-create">#create — CORL::Machine::Physical</a>
|
|
698
|
+
|
|
699
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-create">#create — CORL::Node::Fog</a>
|
|
700
|
+
|
|
701
|
+
<li class="method"><a href="CORL/Machine/Aws.html#method-i-create">#create — CORL::Machine::Aws</a>
|
|
702
|
+
|
|
703
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-create">#create — CORL::Node::Vagrant</a>
|
|
704
|
+
|
|
705
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-create">#create — CORL::Machine::Fog</a>
|
|
706
|
+
|
|
707
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-create_config">#create_config — CORL::Node::Aws</a>
|
|
708
|
+
|
|
709
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-create_config">#create_config — CORL::Node::Rackspace</a>
|
|
710
|
+
|
|
711
|
+
<li class="method"><a href="CORL/Machine/Aws.html#method-i-create_image">#create_image — CORL::Machine::Aws</a>
|
|
712
|
+
|
|
713
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-create_image">#create_image — Nucleon::Plugin::Machine</a>
|
|
714
|
+
|
|
715
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-create_image">#create_image — CORL::Node::Vagrant</a>
|
|
716
|
+
|
|
717
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-create_image">#create_image — CORL::Machine::Fog</a>
|
|
718
|
+
|
|
719
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-create_image">#create_image — CORL::Machine::Physical</a>
|
|
720
|
+
|
|
721
|
+
<li class="method"><a href="CORL/Machine/Rackspace.html#method-i-create_image">#create_image — CORL::Machine::Rackspace</a>
|
|
722
|
+
|
|
723
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-create_image">#create_image — CORL::Node::Fog</a>
|
|
724
|
+
|
|
725
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-create_image">#create_image — CORL::Machine::Vagrant</a>
|
|
726
|
+
|
|
727
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-create_image">#create_image — Nucleon::Plugin::Node</a>
|
|
728
|
+
|
|
729
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-create_machine">#create_machine — Nucleon::Plugin::Node</a>
|
|
730
|
+
|
|
731
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-created-3F">#created? — CORL::Machine::Fog</a>
|
|
732
|
+
|
|
733
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-created-3F">#created? — CORL::Machine::Physical</a>
|
|
734
|
+
|
|
735
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-created-3F">#created? — Nucleon::Plugin::Machine</a>
|
|
736
|
+
|
|
737
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-created-3F">#created? — CORL::Machine::Vagrant</a>
|
|
738
|
+
|
|
739
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-custom_facts">#custom_facts — Nucleon::Plugin::Node</a>
|
|
740
|
+
|
|
741
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-custom_facts-3D">#custom_facts= — Nucleon::Plugin::Node</a>
|
|
742
|
+
|
|
743
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-debug_lookup">#debug_lookup — CORL::Mixin::Lookup</a>
|
|
744
|
+
|
|
745
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-default">#default — CORL::Util::Puppet::ResourceGroup</a>
|
|
746
|
+
|
|
747
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-default-3D">#default= — CORL::Util::Puppet::ResourceGroup</a>
|
|
748
|
+
|
|
749
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-defaults">#defaults — CORL::Util::Puppet::Resource</a>
|
|
750
|
+
|
|
751
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-delete">#delete — Nucleon::Plugin::Configuration</a>
|
|
752
|
+
|
|
753
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-delete_attachments">#delete_attachments — Nucleon::Plugin::Configuration</a>
|
|
754
|
+
|
|
755
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-delete_attachments">#delete_attachments — CORL::Configuration::File</a>
|
|
756
|
+
|
|
757
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-delete_attachments">#delete_attachments — Nucleon::Plugin::Network</a>
|
|
758
|
+
|
|
759
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-delete_keys">#delete_keys — Nucleon::Plugin::Node</a>
|
|
760
|
+
|
|
761
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-destroy">#destroy — Nucleon::Plugin::Node</a>
|
|
762
|
+
|
|
763
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-destroy">#destroy — CORL::Machine::Vagrant</a>
|
|
764
|
+
|
|
765
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-destroy">#destroy — Nucleon::Plugin::Machine</a>
|
|
766
|
+
|
|
767
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-destroy">#destroy — CORL::Machine::Physical</a>
|
|
768
|
+
|
|
769
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-destroy">#destroy — CORL::Machine::Fog</a>
|
|
770
|
+
|
|
771
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-destroy">#destroy — CORL::Node::Vagrant</a>
|
|
772
|
+
|
|
773
|
+
<li class="method"><a href="CORL/Machine/Aws.html#method-i-destroy">#destroy — CORL::Machine::Aws</a>
|
|
774
|
+
|
|
775
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-destroy">#destroy — CORL::Node::Fog</a>
|
|
776
|
+
|
|
777
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-directory">#directory — Nucleon::Plugin::Network</a>
|
|
778
|
+
|
|
779
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-directory">#directory — Nucleon::Plugin::Configuration</a>
|
|
780
|
+
|
|
781
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-directory">#directory — Nucleon::Plugin::Provisioner</a>
|
|
782
|
+
|
|
783
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-directory-3D">#directory= — Nucleon::Plugin::Provisioner</a>
|
|
784
|
+
|
|
785
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-download">#download — Nucleon::Plugin::Node</a>
|
|
786
|
+
|
|
787
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-download">#download — Nucleon::Plugin::Machine</a>
|
|
788
|
+
|
|
789
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-download">#download — CORL::Machine::Physical</a>
|
|
790
|
+
|
|
791
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-download">#download — CORL::Machine::Vagrant</a>
|
|
792
|
+
|
|
793
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-download">#download — CORL::Node::Vagrant</a>
|
|
794
|
+
|
|
795
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-download">#download — CORL::Node::Fog</a>
|
|
796
|
+
|
|
797
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-download">#download — CORL::Machine::Fog</a>
|
|
798
|
+
|
|
799
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-each_node_config">#each_node_config — Nucleon::Plugin::Network</a>
|
|
800
|
+
|
|
801
|
+
<li class="method"><a href="CORL/Event/Puppet.html#method-i-element">#element — CORL::Event::Puppet</a>
|
|
802
|
+
|
|
803
|
+
<li class="method"><a href="CORL/Event/Puppet.html#method-i-element-3D">#element= — CORL::Event::Puppet</a>
|
|
804
|
+
|
|
805
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-ensure_network">#ensure_network — CORL::Plugin::CloudAction</a>
|
|
806
|
+
|
|
807
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-ensure_node">#ensure_node — CORL::Plugin::CloudAction</a>
|
|
808
|
+
|
|
809
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-ensure_ready">#ensure_ready — CORL::Util::Puppet::Resource</a>
|
|
810
|
+
|
|
811
|
+
<li class="method"><a href="CORL/Machine/Aws.html#method-i-ensure_security_group">#ensure_security_group — CORL::Machine::Aws</a>
|
|
812
|
+
|
|
813
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-env">#env — CORL::Machine::Vagrant</a>
|
|
814
|
+
|
|
815
|
+
<li class="method"><a href="VagrantPlugins/CORL/Command/Launcher.html#method-i-env">#env — VagrantPlugins::CORL::Command::Launcher</a>
|
|
816
|
+
|
|
817
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-exec">#exec — Nucleon::Plugin::Node</a>
|
|
818
|
+
|
|
819
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-exec">#exec — CORL::Node::Fog</a>
|
|
820
|
+
|
|
821
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-exec">#exec — CORL::Machine::Vagrant</a>
|
|
822
|
+
|
|
823
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-exec">#exec — CORL::Machine::Physical</a>
|
|
824
|
+
|
|
825
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-exec">#exec — Nucleon::Plugin::Machine</a>
|
|
826
|
+
|
|
827
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-exec">#exec — CORL::Machine::Fog</a>
|
|
828
|
+
|
|
829
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-exec">#exec — CORL::Node::Vagrant</a>
|
|
830
|
+
|
|
831
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-exec_options">#exec_options — CORL::Node::Vagrant</a>
|
|
832
|
+
|
|
833
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-exec_options">#exec_options — CORL::Node::Fog</a>
|
|
834
|
+
|
|
835
|
+
<li class="method"><a href="CORL/Action/Vagrantfile.html#method-i-execute">#execute — CORL::Action::Vagrantfile</a>
|
|
836
|
+
|
|
837
|
+
<li class="method"><a href="CORL/Action/Revoke.html#method-i-execute">#execute — CORL::Action::Revoke</a>
|
|
838
|
+
|
|
839
|
+
<li class="method"><a href="CORL/Action/Stop.html#method-i-execute">#execute — CORL::Action::Stop</a>
|
|
840
|
+
|
|
841
|
+
<li class="method"><a href="CORL/Action/Seed.html#method-i-execute">#execute — CORL::Action::Seed</a>
|
|
842
|
+
|
|
843
|
+
<li class="method"><a href="VagrantPlugins/CORL/Command/Launcher.html#method-i-execute">#execute — VagrantPlugins::CORL::Command::Launcher</a>
|
|
844
|
+
|
|
845
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-execute">#execute — CORL::Plugin::CloudAction</a>
|
|
846
|
+
|
|
847
|
+
<li class="method"><a href="CORL/Action/Facts.html#method-i-execute">#execute — CORL::Action::Facts</a>
|
|
848
|
+
|
|
849
|
+
<li class="method"><a href="CORL/Action/Spawn.html#method-i-execute">#execute — CORL::Action::Spawn</a>
|
|
850
|
+
|
|
851
|
+
<li class="method"><a href="CORL/Action/Destroy.html#method-i-execute">#execute — CORL::Action::Destroy</a>
|
|
852
|
+
|
|
853
|
+
<li class="method"><a href="CORL/Action/Regions.html#method-i-execute">#execute — CORL::Action::Regions</a>
|
|
854
|
+
|
|
855
|
+
<li class="method"><a href="CORL/Action/Image.html#method-i-execute">#execute — CORL::Action::Image</a>
|
|
856
|
+
|
|
857
|
+
<li class="method"><a href="CORL/Action/Reboot.html#method-i-execute">#execute — CORL::Action::Reboot</a>
|
|
858
|
+
|
|
859
|
+
<li class="method"><a href="CORL/Action/Build.html#method-i-execute">#execute — CORL::Action::Build</a>
|
|
860
|
+
|
|
861
|
+
<li class="method"><a href="CORL/Action/Images.html#method-i-execute">#execute — CORL::Action::Images</a>
|
|
862
|
+
|
|
863
|
+
<li class="method"><a href="CORL/Action/Ip.html#method-i-execute">#execute — CORL::Action::Ip</a>
|
|
864
|
+
|
|
865
|
+
<li class="method"><a href="CORL/Action/Ssh.html#method-i-execute">#execute — CORL::Action::Ssh</a>
|
|
866
|
+
|
|
867
|
+
<li class="method"><a href="CORL/Action/Keypair.html#method-i-execute">#execute — CORL::Action::Keypair</a>
|
|
868
|
+
|
|
869
|
+
<li class="method"><a href="CORL/Action/Bootstrap.html#method-i-execute">#execute — CORL::Action::Bootstrap</a>
|
|
870
|
+
|
|
871
|
+
<li class="method"><a href="CORL/Action/Lookup.html#method-i-execute">#execute — CORL::Action::Lookup</a>
|
|
872
|
+
|
|
873
|
+
<li class="method"><a href="CORL/Action/Start.html#method-i-execute">#execute — CORL::Action::Start</a>
|
|
874
|
+
|
|
875
|
+
<li class="method"><a href="CORL/Action/Provision.html#method-i-execute">#execute — CORL::Action::Provision</a>
|
|
876
|
+
|
|
877
|
+
<li class="method"><a href="CORL/Action/Authorize.html#method-i-execute">#execute — CORL::Action::Authorize</a>
|
|
878
|
+
|
|
879
|
+
<li class="method"><a href="CORL/Action/Exec.html#method-i-execute">#execute — CORL::Action::Exec</a>
|
|
880
|
+
|
|
881
|
+
<li class="method"><a href="CORL/Action/Machines.html#method-i-execute">#execute — CORL::Action::Machines</a>
|
|
882
|
+
|
|
883
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-execute_remote">#execute_remote — CORL::Plugin::CloudAction</a>
|
|
884
|
+
|
|
885
|
+
<li class="method"><a href="CORL/Action/Spawn.html#method-i-extract_hostnames">#extract_hostnames — CORL::Action::Spawn</a>
|
|
886
|
+
|
|
887
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-fact">#fact — CORL::Mixin::Lookup</a>
|
|
888
|
+
|
|
889
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-facts">#facts — CORL::Mixin::Lookup</a>
|
|
890
|
+
|
|
891
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-fetch_project">#fetch_project — CORL::Configuration::File</a>
|
|
892
|
+
|
|
893
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-filter_output">#filter_output — CORL::Node::Vagrant</a>
|
|
894
|
+
|
|
895
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-filter_output">#filter_output — Nucleon::Plugin::Node</a>
|
|
896
|
+
|
|
897
|
+
<li class="method"><a href="VagrantPlugins/CORL/Config/CORL.html#method-i-finalize-21">#finalize! — VagrantPlugins::CORL::Config::CORL</a>
|
|
898
|
+
|
|
899
|
+
<li class="method"><a href="Puppet/Indirector/Corl.html#method-i-find">#find — Puppet::Indirector::Corl</a>
|
|
900
|
+
|
|
901
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-find_profiles">#find_profiles — Nucleon::Plugin::Provisioner</a>
|
|
902
|
+
|
|
903
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-gateway">#gateway — Nucleon::Plugin::Provisioner</a>
|
|
904
|
+
|
|
905
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-gateway-3D">#gateway= — Nucleon::Plugin::Provisioner</a>
|
|
906
|
+
|
|
907
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-get_node">#get_node — CORL::Provisioner::Puppetnode</a>
|
|
908
|
+
|
|
909
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-group">#group — CORL::Util::Puppet::Resource</a>
|
|
910
|
+
|
|
911
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-handle">#handle — CORL::Provisioner::Puppetnode</a>
|
|
912
|
+
|
|
913
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-has_nodes-3F">#has_nodes? — Nucleon::Plugin::Network</a>
|
|
914
|
+
|
|
915
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-hiera">#hiera — CORL::Mixin::Lookup</a>
|
|
916
|
+
|
|
917
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-hiera_configuration">#hiera_configuration — CORL::Mixin::Lookup</a>
|
|
918
|
+
|
|
919
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-hiera_facts">#hiera_facts — CORL::Mixin::Lookup</a>
|
|
920
|
+
|
|
921
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-hiera_facts">#hiera_facts — Nucleon::Plugin::Node</a>
|
|
922
|
+
|
|
923
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-hiera_override_dir">#hiera_override_dir — Nucleon::Plugin::Network</a>
|
|
924
|
+
|
|
925
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-hiera_override_dir">#hiera_override_dir — CORL::Mixin::Lookup</a>
|
|
926
|
+
|
|
927
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-hiera_override_dir">#hiera_override_dir — Nucleon::Plugin::Node</a>
|
|
928
|
+
|
|
929
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-home">#home — Nucleon::Plugin::Network</a>
|
|
930
|
+
|
|
931
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-home">#home — Nucleon::Plugin::Node</a>
|
|
932
|
+
|
|
933
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-hostname">#hostname — CORL::Machine::Physical</a>
|
|
934
|
+
|
|
935
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-hostname">#hostname — Nucleon::Plugin::Machine</a>
|
|
936
|
+
|
|
937
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-hostname">#hostname — Nucleon::Plugin::Node</a>
|
|
938
|
+
|
|
939
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-id">#id — Nucleon::Plugin::Provisioner</a>
|
|
940
|
+
|
|
941
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-id">#id — Nucleon::Plugin::Node</a>
|
|
942
|
+
|
|
943
|
+
<li class="method"><a href="CORL/Action/Stop.html#method-i-ignore">#ignore — CORL::Action::Stop</a>
|
|
944
|
+
|
|
945
|
+
<li class="method"><a href="CORL/Action/Image.html#method-i-ignore">#ignore — CORL::Action::Image</a>
|
|
946
|
+
|
|
947
|
+
<li class="method"><a href="CORL/Action/Images.html#method-i-ignore">#ignore — CORL::Action::Images</a>
|
|
948
|
+
|
|
949
|
+
<li class="method"><a href="CORL/Action/Keypair.html#method-i-ignore">#ignore — CORL::Action::Keypair</a>
|
|
950
|
+
|
|
951
|
+
<li class="method"><a href="CORL/Action/Bootstrap.html#method-i-ignore">#ignore — CORL::Action::Bootstrap</a>
|
|
952
|
+
|
|
953
|
+
<li class="method"><a href="CORL/Action/Ssh.html#method-i-ignore">#ignore — CORL::Action::Ssh</a>
|
|
954
|
+
|
|
955
|
+
<li class="method"><a href="CORL/Action/Machines.html#method-i-ignore">#ignore — CORL::Action::Machines</a>
|
|
956
|
+
|
|
957
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-ignore">#ignore — Nucleon::Plugin::Configuration</a>
|
|
958
|
+
|
|
959
|
+
<li class="method"><a href="CORL/Action/Start.html#method-i-ignore">#ignore — CORL::Action::Start</a>
|
|
960
|
+
|
|
961
|
+
<li class="method"><a href="CORL/Action/Spawn.html#method-i-ignore">#ignore — CORL::Action::Spawn</a>
|
|
962
|
+
|
|
963
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-ignore">#ignore — Nucleon::Plugin::Network</a>
|
|
964
|
+
|
|
965
|
+
<li class="method"><a href="CORL/Action/Regions.html#method-i-ignore">#ignore — CORL::Action::Regions</a>
|
|
966
|
+
|
|
967
|
+
<li class="method"><a href="CORL/Action/Reboot.html#method-i-ignore">#ignore — CORL::Action::Reboot</a>
|
|
968
|
+
|
|
969
|
+
<li class="method"><a href="CORL/Action/Destroy.html#method-i-ignore">#ignore — CORL::Action::Destroy</a>
|
|
970
|
+
|
|
971
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-image">#image — CORL::Machine::Physical</a>
|
|
972
|
+
|
|
973
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-image">#image — Nucleon::Plugin::Node</a>
|
|
974
|
+
|
|
975
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-image">#image — CORL::Machine::Fog</a>
|
|
976
|
+
|
|
977
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-image">#image — Nucleon::Plugin::Machine</a>
|
|
978
|
+
|
|
979
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-image-3D">#image= — Nucleon::Plugin::Node</a>
|
|
980
|
+
|
|
981
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-image_id">#image_id — Nucleon::Plugin::Node</a>
|
|
982
|
+
|
|
983
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-image_id">#image_id — CORL::Node::Vagrant</a>
|
|
984
|
+
|
|
985
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-image_search_text">#image_search_text — CORL::Node::Rackspace</a>
|
|
986
|
+
|
|
987
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-image_search_text">#image_search_text — CORL::Node::Aws</a>
|
|
988
|
+
|
|
989
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-image_search_text">#image_search_text — CORL::Node::Vagrant</a>
|
|
990
|
+
|
|
991
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-image_search_text">#image_search_text — Nucleon::Plugin::Node</a>
|
|
992
|
+
|
|
993
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-images">#images — Nucleon::Plugin::Machine</a>
|
|
994
|
+
|
|
995
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-images">#images — CORL::Machine::Fog</a>
|
|
996
|
+
|
|
997
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-images">#images — Nucleon::Plugin::Node</a>
|
|
998
|
+
|
|
999
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-import">#import — Nucleon::Plugin::Configuration</a>
|
|
1000
|
+
|
|
1001
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-import">#import — CORL::Util::Puppet::Resource</a>
|
|
1002
|
+
|
|
1003
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-import">#import — CORL::Provisioner::Puppetnode</a>
|
|
1004
|
+
|
|
1005
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-info">#info — CORL::Util::Puppet::ResourceGroup</a>
|
|
1006
|
+
|
|
1007
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-info">#info — CORL::Util::Puppet::Resource</a>
|
|
1008
|
+
|
|
1009
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-info-3D">#info= — CORL::Util::Puppet::ResourceGroup</a>
|
|
1010
|
+
|
|
1011
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-info-3D">#info= — CORL::Util::Puppet::Resource</a>
|
|
1012
|
+
|
|
1013
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-init_network">#init_network — CORL::Plugin::CloudAction</a>
|
|
1014
|
+
|
|
1015
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-init_node">#init_node — Nucleon::Plugin::Network</a>
|
|
1016
|
+
|
|
1017
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-init_puppet">#init_puppet — CORL::Provisioner::Puppetnode</a>
|
|
1018
|
+
|
|
1019
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-init_server">#init_server — CORL::Machine::Fog</a>
|
|
1020
|
+
|
|
1021
|
+
<li class="method"><a href="CORL/Machine/Rackspace.html#method-i-init_server">#init_server — CORL::Machine::Rackspace</a>
|
|
1022
|
+
|
|
1023
|
+
<li class="method"><a href="CORL/Machine/Aws.html#method-i-init_server">#init_server — CORL::Machine::Aws</a>
|
|
1024
|
+
|
|
1025
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-init_shares">#init_shares — CORL::Node::Vagrant</a>
|
|
1026
|
+
|
|
1027
|
+
<li class="method"><a href="CORL/Machine/Aws.html#method-i-init_ssh">#init_ssh — CORL::Machine::Aws</a>
|
|
1028
|
+
|
|
1029
|
+
<li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-init_ssh_session">#init_ssh_session — CORL::Mixin::Machine::SSH</a>
|
|
1030
|
+
|
|
1031
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-initialized-3F">#initialized? — Nucleon::Plugin::Provisioner</a>
|
|
1032
|
+
|
|
1033
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-inspect">#inspect — CORL::Util::Puppet::ResourceGroup</a>
|
|
1034
|
+
|
|
1035
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-key_config">#key_config — CORL::Node::Fog</a>
|
|
1036
|
+
|
|
1037
|
+
<li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair">#keypair — CORL::Mixin::Action::Keypair</a>
|
|
1038
|
+
|
|
1039
|
+
<li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair-3D">#keypair= — CORL::Mixin::Action::Keypair</a>
|
|
1040
|
+
|
|
1041
|
+
<li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair_clean">#keypair_clean — CORL::Mixin::Action::Keypair</a>
|
|
1042
|
+
|
|
1043
|
+
<li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair_config">#keypair_config — CORL::Mixin::Action::Keypair</a>
|
|
1044
|
+
|
|
1045
|
+
<li class="method"><a href="CORL/Mixin/Action/Keypair.html#method-i-keypair_ignore">#keypair_ignore — CORL::Mixin::Action::Keypair</a>
|
|
1046
|
+
|
|
1047
|
+
<li class="method"><a href="CORL/Machine/Aws.html#method-i-keypair_name">#keypair_name — CORL::Machine::Aws</a>
|
|
1048
|
+
|
|
1049
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-load">#load — Nucleon::Plugin::Machine</a>
|
|
1050
|
+
|
|
1051
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-load">#load — Nucleon::Plugin::Network</a>
|
|
1052
|
+
|
|
1053
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-load">#load — CORL::Machine::Physical</a>
|
|
1054
|
+
|
|
1055
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-load">#load — Nucleon::Plugin::Configuration</a>
|
|
1056
|
+
|
|
1057
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-load">#load — CORL::Machine::Fog</a>
|
|
1058
|
+
|
|
1059
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-load">#load — CORL::Configuration::File</a>
|
|
1060
|
+
|
|
1061
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-load">#load — CORL::Machine::Vagrant</a>
|
|
1062
|
+
|
|
1063
|
+
<li class="method"><a href="Facter/Util/Loader.html#method-i-load_dir">#load_dir — Facter::Util::Loader</a>
|
|
1064
|
+
|
|
1065
|
+
<li class="method"><a href="CORL/Node/Local.html#method-i-local-3F">#local? — CORL::Node::Local</a>
|
|
1066
|
+
|
|
1067
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-local-3F">#local? — Nucleon::Plugin::Node</a>
|
|
1068
|
+
|
|
1069
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-local_machine">#local_machine — Nucleon::Plugin::Node</a>
|
|
1070
|
+
|
|
1071
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-local_machine-3D">#local_machine= — Nucleon::Plugin::Node</a>
|
|
1072
|
+
|
|
1073
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-local_node">#local_node — Nucleon::Plugin::Network</a>
|
|
1074
|
+
|
|
1075
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-localize">#localize — Nucleon::Plugin::Node</a>
|
|
1076
|
+
|
|
1077
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-lookup">#lookup — CORL::Mixin::Lookup</a>
|
|
1078
|
+
|
|
1079
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-lookup">#lookup — Nucleon::Plugin::Provisioner</a>
|
|
1080
|
+
|
|
1081
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-lookup">#lookup — CORL::Provisioner::Puppetnode</a>
|
|
1082
|
+
|
|
1083
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-lookup_array">#lookup_array — Nucleon::Plugin::Node</a>
|
|
1084
|
+
|
|
1085
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-lookup_array">#lookup_array — CORL::Mixin::Lookup</a>
|
|
1086
|
+
|
|
1087
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-lookup_config">#lookup_config — Nucleon::Plugin::Node</a>
|
|
1088
|
+
|
|
1089
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-lookup_facts">#lookup_facts — Nucleon::Plugin::Node</a>
|
|
1090
|
+
|
|
1091
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-lookup_hash">#lookup_hash — CORL::Mixin::Lookup</a>
|
|
1092
|
+
|
|
1093
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-lookup_hash">#lookup_hash — Nucleon::Plugin::Node</a>
|
|
1094
|
+
|
|
1095
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine">#machine — Nucleon::Plugin::Node</a>
|
|
1096
|
+
|
|
1097
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine-3D">#machine= — Nucleon::Plugin::Node</a>
|
|
1098
|
+
|
|
1099
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-machine_config">#machine_config — CORL::Node::Rackspace</a>
|
|
1100
|
+
|
|
1101
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-machine_config">#machine_config — CORL::Node::Fog</a>
|
|
1102
|
+
|
|
1103
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-machine_config">#machine_config — CORL::Node::Aws</a>
|
|
1104
|
+
|
|
1105
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine_config">#machine_config — Nucleon::Plugin::Node</a>
|
|
1106
|
+
|
|
1107
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-machine_config">#machine_config — CORL::Node::Vagrant</a>
|
|
1108
|
+
|
|
1109
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-machine_type">#machine_type — Nucleon::Plugin::Machine</a>
|
|
1110
|
+
|
|
1111
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine_type">#machine_type — Nucleon::Plugin::Node</a>
|
|
1112
|
+
|
|
1113
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-machine_type">#machine_type — CORL::Machine::Physical</a>
|
|
1114
|
+
|
|
1115
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-machine_type">#machine_type — CORL::Machine::Fog</a>
|
|
1116
|
+
|
|
1117
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-machine_type_id">#machine_type_id — CORL::Node::Vagrant</a>
|
|
1118
|
+
|
|
1119
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine_type_id">#machine_type_id — Nucleon::Plugin::Node</a>
|
|
1120
|
+
|
|
1121
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-machine_types">#machine_types — Nucleon::Plugin::Machine</a>
|
|
1122
|
+
|
|
1123
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-machine_types">#machine_types — CORL::Machine::Vagrant</a>
|
|
1124
|
+
|
|
1125
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-machine_types">#machine_types — Nucleon::Plugin::Node</a>
|
|
1126
|
+
|
|
1127
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-machine_types">#machine_types — CORL::Machine::Fog</a>
|
|
1128
|
+
|
|
1129
|
+
<li class="method"><a href="CORL/Event/Puppet.html#method-i-message">#message — CORL::Event::Puppet</a>
|
|
1130
|
+
|
|
1131
|
+
<li class="method"><a href="CORL/Event/Puppet.html#method-i-message-3D">#message= — CORL::Event::Puppet</a>
|
|
1132
|
+
|
|
1133
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-method_missing">#method_missing — Nucleon::Plugin::Node</a>
|
|
1134
|
+
|
|
1135
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-namespace">#namespace — CORL::Plugin::CloudAction</a>
|
|
1136
|
+
|
|
1137
|
+
<li class="method"><a href="CORL/Facade.html#method-i-network">#network — CORL::Facade</a>
|
|
1138
|
+
|
|
1139
|
+
<li class="method"><a href="CORL/Mixin/Macro/NetworkSettings.html#method-i-network_settings">#network_settings — CORL::Mixin::Macro::NetworkSettings</a>
|
|
1140
|
+
|
|
1141
|
+
<li class="method"><a href="CORL/Facade.html#method-i-networks">#networks — CORL::Facade</a>
|
|
1142
|
+
|
|
1143
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-new_machine">#new_machine — CORL::Machine::Vagrant</a>
|
|
1144
|
+
|
|
1145
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-node">#node — Nucleon::Plugin::Machine</a>
|
|
1146
|
+
|
|
1147
|
+
<li class="method"><a href="CORL/Facade.html#method-i-node">#node — CORL::Facade</a>
|
|
1148
|
+
|
|
1149
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-node-3D">#node= — Nucleon::Plugin::Machine</a>
|
|
1150
|
+
|
|
1151
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-node_by_ip">#node_by_ip — Nucleon::Plugin::Network</a>
|
|
1152
|
+
|
|
1153
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-node_config">#node_config — CORL::Plugin::CloudAction</a>
|
|
1154
|
+
|
|
1155
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-node_exec">#node_exec — CORL::Plugin::CloudAction</a>
|
|
1156
|
+
|
|
1157
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-node_groups">#node_groups — Nucleon::Plugin::Network</a>
|
|
1158
|
+
|
|
1159
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-node_ignore">#node_ignore — CORL::Plugin::CloudAction</a>
|
|
1160
|
+
|
|
1161
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-node_info">#node_info — Nucleon::Plugin::Network</a>
|
|
1162
|
+
|
|
1163
|
+
<li class="method"><a href="CORL/Facade.html#method-i-nodes">#nodes — CORL::Facade</a>
|
|
1164
|
+
|
|
1165
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-nodes_by_reference">#nodes_by_reference — Nucleon::Plugin::Network</a>
|
|
1166
|
+
|
|
1167
|
+
<li class="method"><a href="CORL/Network/Default.html#method-i-normalize">#normalize — CORL::Network::Default</a>
|
|
1168
|
+
|
|
1169
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-normalize">#normalize — CORL::Node::Fog</a>
|
|
1170
|
+
|
|
1171
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-normalize">#normalize — Nucleon::Plugin::Provisioner</a>
|
|
1172
|
+
|
|
1173
|
+
<li class="method"><a href="CORL/Node/Local.html#method-i-normalize">#normalize — CORL::Node::Local</a>
|
|
1174
|
+
|
|
1175
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-normalize">#normalize — CORL::Machine::Physical</a>
|
|
1176
|
+
|
|
1177
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-normalize">#normalize — Nucleon::Plugin::Network</a>
|
|
1178
|
+
|
|
1179
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-normalize">#normalize — CORL::Provisioner::Puppetnode</a>
|
|
1180
|
+
|
|
1181
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-normalize">#normalize — Nucleon::Plugin::Machine</a>
|
|
1182
|
+
|
|
1183
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-normalize">#normalize — CORL::Configuration::File</a>
|
|
1184
|
+
|
|
1185
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-normalize">#normalize — CORL::Node::Rackspace</a>
|
|
1186
|
+
|
|
1187
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-normalize">#normalize — CORL::Node::Vagrant</a>
|
|
1188
|
+
|
|
1189
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-normalize">#normalize — Nucleon::Plugin::Node</a>
|
|
1190
|
+
|
|
1191
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-normalize">#normalize — Nucleon::Plugin::Configuration</a>
|
|
1192
|
+
|
|
1193
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-normalize">#normalize — CORL::Util::Puppet::ResourceGroup</a>
|
|
1194
|
+
|
|
1195
|
+
<li class="method"><a href="CORL/Mixin/Lookup.html#method-i-normalize">#normalize — CORL::Mixin::Lookup</a>
|
|
1196
|
+
|
|
1197
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-normalize">#normalize — CORL::Node::Aws</a>
|
|
1198
|
+
|
|
1199
|
+
<li class="method"><a href="CORL/Event/Puppet.html#method-i-normalize">#normalize — CORL::Event::Puppet</a>
|
|
1200
|
+
|
|
1201
|
+
<li class="method"><a href="CORL/Event/Puppet.html#method-i-operation">#operation — CORL::Event::Puppet</a>
|
|
1202
|
+
|
|
1203
|
+
<li class="method"><a href="CORL/Event/Puppet.html#method-i-operation-3D">#operation= — CORL::Event::Puppet</a>
|
|
1204
|
+
|
|
1205
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-packages">#packages — Nucleon::Plugin::Provisioner</a>
|
|
1206
|
+
|
|
1207
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-private_ip">#private_ip — CORL::Machine::Fog</a>
|
|
1208
|
+
|
|
1209
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-private_ip">#private_ip — Nucleon::Plugin::Machine</a>
|
|
1210
|
+
|
|
1211
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-private_ip">#private_ip — CORL::Machine::Physical</a>
|
|
1212
|
+
|
|
1213
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-private_ip">#private_ip — Nucleon::Plugin::Node</a>
|
|
1214
|
+
|
|
1215
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-private_key">#private_key — Nucleon::Plugin::Node</a>
|
|
1216
|
+
|
|
1217
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-private_key-3D">#private_key= — Nucleon::Plugin::Node</a>
|
|
1218
|
+
|
|
1219
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-process">#process — CORL::Util::Puppet::Resource</a>
|
|
1220
|
+
|
|
1221
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-profile_id">#profile_id — CORL::Provisioner::Puppetnode</a>
|
|
1222
|
+
|
|
1223
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-profiles">#profiles — Nucleon::Plugin::Provisioner</a>
|
|
1224
|
+
|
|
1225
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-profiles">#profiles — Nucleon::Plugin::Node</a>
|
|
1226
|
+
|
|
1227
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-profiles-3D">#profiles= — Nucleon::Plugin::Node</a>
|
|
1228
|
+
|
|
1229
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-project">#project — Nucleon::Plugin::Configuration</a>
|
|
1230
|
+
|
|
1231
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-provision">#provision — Nucleon::Plugin::Provisioner</a>
|
|
1232
|
+
|
|
1233
|
+
<li class="method"><a href="VagrantPlugins/CORL/Provisioner/CORL.html#method-i-provision">#provision — VagrantPlugins::CORL::Provisioner::CORL</a>
|
|
1234
|
+
|
|
1235
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-provision">#provision — CORL::Provisioner::Puppetnode</a>
|
|
1236
|
+
|
|
1237
|
+
<li class="method"><a href="CORL/Facade.html#method-i-provisioner">#provisioner — CORL::Facade</a>
|
|
1238
|
+
|
|
1239
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-provisioner_info">#provisioner_info — Nucleon::Plugin::Node</a>
|
|
1240
|
+
|
|
1241
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-provisioners">#provisioners — Nucleon::Plugin::Node</a>
|
|
1242
|
+
|
|
1243
|
+
<li class="method"><a href="CORL/Facade.html#method-i-provisioners">#provisioners — CORL::Facade</a>
|
|
1244
|
+
|
|
1245
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-public_ip">#public_ip — Nucleon::Plugin::Node</a>
|
|
1246
|
+
|
|
1247
|
+
<li class="method"><a href="CORL/Facade.html#method-i-public_ip">#public_ip — CORL::Facade</a>
|
|
1248
|
+
|
|
1249
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-public_ip">#public_ip — CORL::Machine::Physical</a>
|
|
1250
|
+
|
|
1251
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-public_ip">#public_ip — CORL::Machine::Fog</a>
|
|
1252
|
+
|
|
1253
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-public_ip">#public_ip — Nucleon::Plugin::Machine</a>
|
|
1254
|
+
|
|
1255
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-public_key">#public_key — Nucleon::Plugin::Node</a>
|
|
1256
|
+
|
|
1257
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-public_key-3D">#public_key= — Nucleon::Plugin::Node</a>
|
|
1258
|
+
|
|
1259
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-ready">#ready — CORL::Util::Puppet::Resource</a>
|
|
1260
|
+
|
|
1261
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-refresh_config">#refresh_config — CORL::Machine::Vagrant</a>
|
|
1262
|
+
|
|
1263
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-region">#region — CORL::Node::Fog</a>
|
|
1264
|
+
|
|
1265
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-region-3D">#region= — CORL::Node::Fog</a>
|
|
1266
|
+
|
|
1267
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-regions">#regions — CORL::Node::Rackspace</a>
|
|
1268
|
+
|
|
1269
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-regions">#regions — CORL::Node::Fog</a>
|
|
1270
|
+
|
|
1271
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-regions">#regions — CORL::Node::Aws</a>
|
|
1272
|
+
|
|
1273
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-register">#register — CORL::Provisioner::Puppetnode</a>
|
|
1274
|
+
|
|
1275
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-register">#register — Nucleon::Plugin::Provisioner</a>
|
|
1276
|
+
|
|
1277
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-reload">#reload — CORL::Machine::Vagrant</a>
|
|
1278
|
+
|
|
1279
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-reload">#reload — CORL::Node::Vagrant</a>
|
|
1280
|
+
|
|
1281
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-reload">#reload — CORL::Machine::Physical</a>
|
|
1282
|
+
|
|
1283
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-reload">#reload — CORL::Machine::Fog</a>
|
|
1284
|
+
|
|
1285
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-reload">#reload — Nucleon::Plugin::Machine</a>
|
|
1286
|
+
|
|
1287
|
+
<li class="method"><a href="Vagrant/Vagrantfile.html#method-i-reload">#reload — Vagrant::Vagrantfile</a>
|
|
1288
|
+
|
|
1289
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-reload">#reload — Nucleon::Plugin::Node</a>
|
|
1290
|
+
|
|
1291
|
+
<li class="method"><a href="CORL/Machine/Rackspace.html#method-i-reload">#reload — CORL::Machine::Rackspace</a>
|
|
1292
|
+
|
|
1293
|
+
<li class="method"><a href="CORL/Machine/Aws.html#method-i-reload">#reload — CORL::Machine::Aws</a>
|
|
1294
|
+
|
|
1295
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-reload">#reload — CORL::Node::Fog</a>
|
|
1296
|
+
|
|
1297
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-remote">#remote — Nucleon::Plugin::Configuration</a>
|
|
1298
|
+
|
|
1299
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-remote">#remote — Nucleon::Plugin::Network</a>
|
|
1300
|
+
|
|
1301
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-remove">#remove — Nucleon::Plugin::Configuration</a>
|
|
1302
|
+
|
|
1303
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-remove">#remove — CORL::Configuration::File</a>
|
|
1304
|
+
|
|
1305
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-remove_plugin">#remove_plugin — Nucleon::Plugin::Configuration</a>
|
|
1306
|
+
|
|
1307
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-remove_plugin">#remove_plugin — Nucleon::Plugin::Node</a>
|
|
1308
|
+
|
|
1309
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-remove_plugin">#remove_plugin — Nucleon::Plugin::Network</a>
|
|
1310
|
+
|
|
1311
|
+
<li class="method"><a href="CORL/Event/Puppet.html#method-i-render">#render — CORL::Event::Puppet</a>
|
|
1312
|
+
|
|
1313
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-render">#render — CORL::Util::Puppet::Resource</a>
|
|
1314
|
+
|
|
1315
|
+
<li class="method"><a href="CORL/Template/Environment.html#method-i-render_assignment">#render_assignment — CORL::Template::Environment</a>
|
|
1316
|
+
|
|
1317
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-render_image">#render_image — CORL::Node::Rackspace</a>
|
|
1318
|
+
|
|
1319
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-render_image">#render_image — CORL::Node::Aws</a>
|
|
1320
|
+
|
|
1321
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-render_image">#render_image — Nucleon::Plugin::Node</a>
|
|
1322
|
+
|
|
1323
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-render_image">#render_image — CORL::Node::Vagrant</a>
|
|
1324
|
+
|
|
1325
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-render_machine_type">#render_machine_type — CORL::Node::Vagrant</a>
|
|
1326
|
+
|
|
1327
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-render_machine_type">#render_machine_type — Nucleon::Plugin::Node</a>
|
|
1328
|
+
|
|
1329
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-render_machine_type">#render_machine_type — CORL::Node::Rackspace</a>
|
|
1330
|
+
|
|
1331
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-render_machine_type">#render_machine_type — CORL::Node::Aws</a>
|
|
1332
|
+
|
|
1333
|
+
<li class="method"><a href="CORL/Template/Environment.html#method-i-render_name">#render_name — CORL::Template::Environment</a>
|
|
1334
|
+
|
|
1335
|
+
<li class="method"><a href="CORL/Template/Environment.html#method-i-render_processed">#render_processed — CORL::Template::Environment</a>
|
|
1336
|
+
|
|
1337
|
+
<li class="method"><a href="CORL/Template/Environment.html#method-i-render_value">#render_value — CORL::Template::Environment</a>
|
|
1338
|
+
|
|
1339
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-resources">#resources — CORL::Util::Puppet::ResourceGroup</a>
|
|
1340
|
+
|
|
1341
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-resources-3D">#resources= — CORL::Util::Puppet::ResourceGroup</a>
|
|
1342
|
+
|
|
1343
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-router">#router — CORL::Configuration::File</a>
|
|
1344
|
+
|
|
1345
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-run">#run — CORL::Machine::Vagrant</a>
|
|
1346
|
+
|
|
1347
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-run">#run — Nucleon::Plugin::Node</a>
|
|
1348
|
+
|
|
1349
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-running-3F">#running? — CORL::Machine::Fog</a>
|
|
1350
|
+
|
|
1351
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-running-3F">#running? — CORL::Machine::Physical</a>
|
|
1352
|
+
|
|
1353
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-running-3F">#running? — Nucleon::Plugin::Machine</a>
|
|
1354
|
+
|
|
1355
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-running-3F">#running? — CORL::Machine::Vagrant</a>
|
|
1356
|
+
|
|
1357
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-save">#save — Nucleon::Plugin::Node</a>
|
|
1358
|
+
|
|
1359
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-save">#save — Nucleon::Plugin::Network</a>
|
|
1360
|
+
|
|
1361
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-save">#save — CORL::Configuration::File</a>
|
|
1362
|
+
|
|
1363
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-save">#save — Nucleon::Plugin::Configuration</a>
|
|
1364
|
+
|
|
1365
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-save">#save — CORL::Node::Vagrant</a>
|
|
1366
|
+
|
|
1367
|
+
<li class="method"><a href="CORL/Provisioner/Puppetnode.html#method-i-scope">#scope — CORL::Provisioner::Puppetnode</a>
|
|
1368
|
+
|
|
1369
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-search">#search — CORL::Configuration::File</a>
|
|
1370
|
+
|
|
1371
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-search_files">#search_files — CORL::Configuration::File</a>
|
|
1372
|
+
|
|
1373
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-select_largest">#select_largest — CORL::Configuration::File</a>
|
|
1374
|
+
|
|
1375
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-send_files">#send_files — Nucleon::Plugin::Node</a>
|
|
1376
|
+
|
|
1377
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-separate">#separate — CORL::Configuration::File</a>
|
|
1378
|
+
|
|
1379
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-server">#server — CORL::Machine::Vagrant</a>
|
|
1380
|
+
|
|
1381
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-server">#server — CORL::Machine::Fog</a>
|
|
1382
|
+
|
|
1383
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-server-3D">#server= — CORL::Machine::Fog</a>
|
|
1384
|
+
|
|
1385
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-server-3D">#server= — CORL::Machine::Vagrant</a>
|
|
1386
|
+
|
|
1387
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-set">#set — Nucleon::Plugin::Configuration</a>
|
|
1388
|
+
|
|
1389
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-set_command">#set_command — CORL::Machine::Vagrant</a>
|
|
1390
|
+
|
|
1391
|
+
<li class="method"><a href="CORL/Machine/Rackspace.html#method-i-set_connection">#set_connection — CORL::Machine::Rackspace</a>
|
|
1392
|
+
|
|
1393
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-set_connection">#set_connection — CORL::Machine::Fog</a>
|
|
1394
|
+
|
|
1395
|
+
<li class="method"><a href="CORL/Machine/Aws.html#method-i-set_connection">#set_connection — CORL::Machine::Aws</a>
|
|
1396
|
+
|
|
1397
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-set_location">#set_location — CORL::Configuration::File</a>
|
|
1398
|
+
|
|
1399
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-set_location">#set_location — Nucleon::Plugin::Configuration</a>
|
|
1400
|
+
|
|
1401
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-set_remote">#set_remote — Nucleon::Plugin::Network</a>
|
|
1402
|
+
|
|
1403
|
+
<li class="method"><a href="Nucleon/Plugin/Configuration.html#method-i-set_remote">#set_remote — Nucleon::Plugin::Configuration</a>
|
|
1404
|
+
|
|
1405
|
+
<li class="method"><a href="Fog/Compute/RackspaceV2/Server.html#method-i-setup">#setup — Fog::Compute::RackspaceV2::Server</a>
|
|
1406
|
+
|
|
1407
|
+
<li class="method"><a href="Fog/Compute/AWS/Server.html#method-i-setup">#setup — Fog::Compute::AWS::Server</a>
|
|
1408
|
+
|
|
1409
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-shares">#shares — CORL::Node::Vagrant</a>
|
|
1410
|
+
|
|
1411
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-shares-3D">#shares= — CORL::Node::Vagrant</a>
|
|
1412
|
+
|
|
1413
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-ssh">#ssh — CORL::Node::Vagrant</a>
|
|
1414
|
+
|
|
1415
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-ssh-3D">#ssh= — CORL::Node::Vagrant</a>
|
|
1416
|
+
|
|
1417
|
+
<li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_download">#ssh_download — CORL::Mixin::Machine::SSH</a>
|
|
1418
|
+
|
|
1419
|
+
<li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_exec">#ssh_exec — CORL::Mixin::Machine::SSH</a>
|
|
1420
|
+
|
|
1421
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-ssh_path">#ssh_path — Nucleon::Plugin::Node</a>
|
|
1422
|
+
|
|
1423
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-ssh_port">#ssh_port — Nucleon::Plugin::Node</a>
|
|
1424
|
+
|
|
1425
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-ssh_port-3D">#ssh_port= — Nucleon::Plugin::Node</a>
|
|
1426
|
+
|
|
1427
|
+
<li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_terminal">#ssh_terminal — CORL::Mixin::Machine::SSH</a>
|
|
1428
|
+
|
|
1429
|
+
<li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_upload">#ssh_upload — CORL::Mixin::Machine::SSH</a>
|
|
1430
|
+
|
|
1431
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-ssh_wait_for_ready">#ssh_wait_for_ready — CORL::Machine::Fog</a>
|
|
1432
|
+
|
|
1433
|
+
<li class="method"><a href="CORL/Mixin/Machine/SSH.html#method-i-ssh_wait_for_ready">#ssh_wait_for_ready — CORL::Mixin::Machine::SSH</a>
|
|
1434
|
+
|
|
1435
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-start">#start — CORL::Machine::Vagrant</a>
|
|
1436
|
+
|
|
1437
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-start">#start — CORL::Node::Rackspace</a>
|
|
1438
|
+
|
|
1439
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-start">#start — CORL::Node::Fog</a>
|
|
1440
|
+
|
|
1441
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-start">#start — CORL::Machine::Physical</a>
|
|
1442
|
+
|
|
1443
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-start">#start — Nucleon::Plugin::Node</a>
|
|
1444
|
+
|
|
1445
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-start">#start — Nucleon::Plugin::Machine</a>
|
|
1446
|
+
|
|
1447
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-start">#start — CORL::Node::Aws</a>
|
|
1448
|
+
|
|
1449
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-start">#start — CORL::Node::Vagrant</a>
|
|
1450
|
+
|
|
1451
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-start_machine">#start_machine — CORL::Machine::Vagrant</a>
|
|
1452
|
+
|
|
1453
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-state">#state — CORL::Machine::Fog</a>
|
|
1454
|
+
|
|
1455
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-state">#state — CORL::Machine::Vagrant</a>
|
|
1456
|
+
|
|
1457
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-state">#state — CORL::Node::Vagrant</a>
|
|
1458
|
+
|
|
1459
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-state">#state — Nucleon::Plugin::Node</a>
|
|
1460
|
+
|
|
1461
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-state">#state — CORL::Machine::Physical</a>
|
|
1462
|
+
|
|
1463
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-state">#state — Nucleon::Plugin::Machine</a>
|
|
1464
|
+
|
|
1465
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-stop">#stop — CORL::Node::Fog</a>
|
|
1466
|
+
|
|
1467
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-stop">#stop — CORL::Machine::Vagrant</a>
|
|
1468
|
+
|
|
1469
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-stop">#stop — Nucleon::Plugin::Node</a>
|
|
1470
|
+
|
|
1471
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-stop">#stop — CORL::Machine::Fog</a>
|
|
1472
|
+
|
|
1473
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-stop">#stop — CORL::Node::Vagrant</a>
|
|
1474
|
+
|
|
1475
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-stop">#stop — Nucleon::Plugin::Machine</a>
|
|
1476
|
+
|
|
1477
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-stop">#stop — CORL::Machine::Physical</a>
|
|
1478
|
+
|
|
1479
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-supported_profiles">#supported_profiles — Nucleon::Plugin::Provisioner</a>
|
|
1480
|
+
|
|
1481
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-tag">#tag — CORL::Util::Puppet::Resource</a>
|
|
1482
|
+
|
|
1483
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-terminal">#terminal — CORL::Machine::Physical</a>
|
|
1484
|
+
|
|
1485
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-terminal">#terminal — Nucleon::Plugin::Node</a>
|
|
1486
|
+
|
|
1487
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-terminal">#terminal — CORL::Machine::Fog</a>
|
|
1488
|
+
|
|
1489
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-terminal">#terminal — Nucleon::Plugin::Machine</a>
|
|
1490
|
+
|
|
1491
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-terminal">#terminal — CORL::Machine::Vagrant</a>
|
|
1492
|
+
|
|
1493
|
+
<li class="method"><a href="Nucleon/Plugin/Network.html#method-i-test_node">#test_node — Nucleon::Plugin::Network</a>
|
|
1494
|
+
|
|
1495
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-title">#title — CORL::Util::Puppet::Resource</a>
|
|
1496
|
+
|
|
1497
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-title-3D">#title= — CORL::Util::Puppet::Resource</a>
|
|
1498
|
+
|
|
1499
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-translate">#translate — CORL::Util::Puppet::Resource</a>
|
|
1500
|
+
|
|
1501
|
+
<li class="method"><a href="CORL/Util/Puppet/ResourceGroup.html#method-i-translate">#translate — CORL::Util::Puppet::ResourceGroup</a>
|
|
1502
|
+
|
|
1503
|
+
<li class="method"><a href="Nucleon/Plugin/Provisioner.html#method-i-translate_reference">#translate_reference — Nucleon::Plugin::Provisioner</a>
|
|
1504
|
+
|
|
1505
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-translate_reference">#translate_reference — Nucleon::Plugin::Node</a>
|
|
1506
|
+
|
|
1507
|
+
<li class="method"><a href="CORL/Util/Puppet/Resource.html#method-i-translate_resource_refs">#translate_resource_refs — CORL::Util::Puppet::Resource</a>
|
|
1508
|
+
|
|
1509
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-translate_state">#translate_state — Nucleon::Plugin::Machine</a>
|
|
1510
|
+
|
|
1511
|
+
<li class="method"><a href="CORL/Configuration/File.html#method-i-update_project">#update_project — CORL::Configuration::File</a>
|
|
1512
|
+
|
|
1513
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-upload">#upload — CORL::Node::Vagrant</a>
|
|
1514
|
+
|
|
1515
|
+
<li class="method"><a href="Nucleon/Plugin/Machine.html#method-i-upload">#upload — Nucleon::Plugin::Machine</a>
|
|
1516
|
+
|
|
1517
|
+
<li class="method"><a href="CORL/Node/Fog.html#method-i-upload">#upload — CORL::Node::Fog</a>
|
|
1518
|
+
|
|
1519
|
+
<li class="method"><a href="CORL/Machine/Physical.html#method-i-upload">#upload — CORL::Machine::Physical</a>
|
|
1520
|
+
|
|
1521
|
+
<li class="method"><a href="CORL/Machine/Fog.html#method-i-upload">#upload — CORL::Machine::Fog</a>
|
|
1522
|
+
|
|
1523
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-upload">#upload — Nucleon::Plugin::Node</a>
|
|
1524
|
+
|
|
1525
|
+
<li class="method"><a href="CORL/Machine/Vagrant.html#method-i-upload">#upload — CORL::Machine::Vagrant</a>
|
|
1526
|
+
|
|
1527
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-usable_image-3F">#usable_image? — Nucleon::Plugin::Node</a>
|
|
1528
|
+
|
|
1529
|
+
<li class="method"><a href="CORL/Node/Aws.html#method-i-usable_image-3F">#usable_image? — CORL::Node::Aws</a>
|
|
1530
|
+
|
|
1531
|
+
<li class="method"><a href="CORL/Node/Rackspace.html#method-i-usable_image-3F">#usable_image? — CORL::Node::Rackspace</a>
|
|
1532
|
+
|
|
1533
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-user">#user — Nucleon::Plugin::Node</a>
|
|
1534
|
+
|
|
1535
|
+
<li class="method"><a href="Nucleon/Plugin/Node.html#method-i-user-3D">#user= — Nucleon::Plugin::Node</a>
|
|
1536
|
+
|
|
1537
|
+
<li class="method"><a href="CORL/Facade.html#method-i-vagrant-3F">#vagrant? — CORL::Facade</a>
|
|
1538
|
+
|
|
1539
|
+
<li class="method"><a href="CORL/Facade.html#method-i-vagrant_config">#vagrant_config — CORL::Facade</a>
|
|
1540
|
+
|
|
1541
|
+
<li class="method"><a href="CORL/Facade.html#method-i-vagrant_config_loaded-3F">#vagrant_config_loaded? — CORL::Facade</a>
|
|
1542
|
+
|
|
1543
|
+
<li class="method"><a href="CORL/Plugin/CloudAction.html#method-i-validate">#validate — CORL::Plugin::CloudAction</a>
|
|
1544
|
+
|
|
1545
|
+
<li class="method"><a href="VagrantPlugins/CORL/Config/CORL.html#method-i-validate">#validate — VagrantPlugins::CORL::Config::CORL</a>
|
|
1546
|
+
|
|
1547
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-vm">#vm — CORL::Node::Vagrant</a>
|
|
1548
|
+
|
|
1549
|
+
<li class="method"><a href="CORL/Node/Vagrant.html#method-i-vm-3D">#vm= — CORL::Node::Vagrant</a>
|
|
1550
|
+
|
|
1551
|
+
<li class="method"><a href="VagrantPlugins/CORL/Command/Launcher.html#method-i-vm_machine">#vm_machine — VagrantPlugins::CORL::Command::Launcher</a>
|
|
1552
|
+
|
|
1553
|
+
</ul>
|
|
1554
|
+
|
|
1555
|
+
|
|
1556
|
+
<footer id="validator-badges">
|
|
1557
|
+
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
|
1558
|
+
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
|
|
1559
|
+
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
|
1560
|
+
</footer>
|
|
1561
|
+
|