summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--everest-bootstrap/bin/everest-bootstrap5
1 files 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