summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrenton Leanhardt <bleanhar@redhat.com>2008-03-05 08:34:02 -0500
committerBrenton Leanhardt <bleanhar@redhat.com>2008-03-05 08:34:02 -0500
commite331bf5a2c58e365fc637a8b12240e68c0b8a7aa (patch)
tree858e536a7b5fab0c1c3f0e04b678e54ca6a38f34
parent7f77f2d5a90e8dd5193111f5c7c3dd8e836bf73d (diff)
Fixing typo
This is precisely why I need to unit::test this stuff
-rw-r--r--everest-bootstrap/lib/everest-bootstrap/core.rb4
-rw-r--r--everest-bootstrap/lib/everest-bootstrap/version.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/everest-bootstrap/lib/everest-bootstrap/core.rb b/everest-bootstrap/lib/everest-bootstrap/core.rb
index d552837..0b4a39d 100644
--- a/everest-bootstrap/lib/everest-bootstrap/core.rb
+++ b/everest-bootstrap/lib/everest-bootstrap/core.rb
@@ -113,7 +113,7 @@ module EverestBootstrap
puts "Once you are logged in `tail -f /var/log/messages` to see how puppet is doing."
end
- def boostrap_self
+ def bootstrap_self
write_firstboot_script
end
@@ -145,7 +145,7 @@ module EverestBootstrap
if vm
bootstrap_vm(virt_path)
else
- bootstap_self
+ bootstrap_self
end
end
end
diff --git a/everest-bootstrap/lib/everest-bootstrap/version.rb b/everest-bootstrap/lib/everest-bootstrap/version.rb
index 6101b96..5874235 100644
--- a/everest-bootstrap/lib/everest-bootstrap/version.rb
+++ b/everest-bootstrap/lib/everest-bootstrap/version.rb
@@ -2,7 +2,7 @@ module EverestBootstrap
module Version
MAJOR = 0
MINOR = 3
- BUILD = 1
+ BUILD = 2
STRING = [MAJOR, MINOR, BUILD].join(".")
end