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/bin/cloud-ctl | |
| 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/bin/cloud-ctl')
| -rw-r--r-- | cloud/bin/cloud-ctl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cloud/bin/cloud-ctl b/cloud/bin/cloud-ctl new file mode 100644 index 0000000..b38a487 --- /dev/null +++ b/cloud/bin/cloud-ctl @@ -0,0 +1,8 @@ +#!/usr/bin/env ruby + +require 'rubygems' +require 'picnic/service_control' + +ctl = Picnic::ServiceControl.new('cloud') + +ctl.handle_cli_input |
