From c18479a67951aacff0f613a68287c03d3dff1399 Mon Sep 17 00:00:00 2001 From: Greg Blomquist Date: Wed, 18 Jun 2008 18:19:23 -0400 Subject: More cloud functionality --- everest-bootstrap/bin/everest-bootstrap | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/everest-bootstrap/bin/everest-bootstrap b/everest-bootstrap/bin/everest-bootstrap index a224bee..31bcb29 100644 --- a/everest-bootstrap/bin/everest-bootstrap +++ b/everest-bootstrap/bin/everest-bootstrap @@ -189,6 +189,7 @@ Main { @facts = Hash.new @repo = ask("Enter your Everest repo machine name (leave off the '-repo'): ") + @cloud = ask("Enter your cloud master (leave off the '-repo'): ") @user = ask("Enter your kerberos username: ") say_red("Your machine name is the part right before the Everest type.") @@ -252,7 +253,7 @@ Main { end while agree("Enter another? ", true) end - say_red("The Koan process will start on the repo you selected.") + say_red("The Koan process will start on a machine in the cloud.") end def run @@ -263,7 +264,7 @@ Main { @everest_repo.register_machine(@fqdn, config) cloud_repo = CloudRepo.new - cloud_repo.create_machine(@fqdn, @everest_repo.repo) + cloud_repo.create_machine(@fqdn, @cloud) end end -- cgit