diff options
| author | Greg Blomquist <gblomqui@redhat.com> | 2008-06-19 11:26:41 -0400 |
|---|---|---|
| committer | Greg Blomquist <gblomqui@redhat.com> | 2008-06-19 11:26:41 -0400 |
| commit | 4f244d65c5c2e4ffb4b38e00baa5f83de89c20d8 (patch) | |
| tree | 3766d2acc9bab1e67f59265ddf65eaf11524b0eb /cloud/script/console | |
| parent | 6589df757f98b386afda6bbb1b076577b96b8ae2 (diff) | |
| download | tools-4f244d65c5c2e4ffb4b38e00baa5f83de89c20d8.tar.gz tools-4f244d65c5c2e4ffb4b38e00baa5f83de89c20d8.tar.xz tools-4f244d65c5c2e4ffb4b38e00baa5f83de89c20d8.zip | |
Creating a "cloud controller" daemon to run on cloud machines and provision virtual machines within the cloud.
Updated everest-bootstrap to call the cloud controller when provisioning machines
Removed "koan" operations from everestd. Now everestd only knows how to register machines with everest and cobbler. Basically a rollback to its previous version.
Diffstat (limited to 'cloud/script/console')
| -rwxr-xr-x | cloud/script/console | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cloud/script/console b/cloud/script/console new file mode 100755 index 0000000..ef928b7 --- /dev/null +++ b/cloud/script/console @@ -0,0 +1,10 @@ +#!/usr/bin/env ruby +# File: script/console +irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb' + +libs = " -r irb/completion" +# Perhaps use a console_lib to store any extra methods I may want available in the cosole +# libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}" +libs << " -r #{File.dirname(__FILE__) + '/../lib/cloud.rb'}" +puts "Loading cloud gem" +exec "#{irb} #{libs} --simple-prompt" |
