Skip to content

Commit

Permalink
Fix spelling error: "succesfully" --> "successfully".
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian C. Dunn committed Dec 3, 2012
1 parent d2633c1 commit aca6dc3
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion doc/vagrant.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Let's define a Ubuntu 10.10 server i386 basebox called myunbuntubox
this is essentially making a copy based on the templates provided above.

$ veewee vbox define 'myubuntubox' 'ubuntu-10.10-server-i386'
The basebox 'myubuntubox' has been succesfully created from the template ''ubuntu-10.10-server-i386'
The basebox 'myubuntubox' has been successfully created from the template ''ubuntu-10.10-server-i386'
You can now edit the definition files stored in definitions/myubuntubox
or build the box with:
veewee vbox build 'myubuntubox'
Expand Down
4 changes: 2 additions & 2 deletions lib/veewee/command/fusion.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def define(definition_name, template_name)
venv=Veewee::Environment.new(options)
venv.ui=env.ui
venv.definitions.define(definition_name,template_name,options)
env.ui.info "The basebox '#{definition_name}' has been succesfully created from the template '#{template_name}'"
env.ui.info "The basebox '#{definition_name}' has been successfully created from the template '#{template_name}'"
env.ui.info "You can now edit the definition files stored in definitions/#{definition_name} or build the box with:"
env.ui.info "veewee fusion build '#{definition_name}'"
end
Expand All @@ -106,7 +106,7 @@ def undefine(definition_name)
venv=Veewee::Environment.new(options)
venv.ui=env.ui
venv.definitions.undefine(definition_name,options)
env.ui.info "Definition #{definition_name} succesfully removed",:prefix => false
env.ui.info "Definition #{definition_name} successfully removed",:prefix => false
rescue Error => ex
env.ui.error "#{ex}" , :prefix => false
exit -1
Expand Down
2 changes: 1 addition & 1 deletion lib/veewee/command/kvm.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def define(definition_name, template_name)
venv=Veewee::Environment.new(options)
venv.ui=env.ui
venv.definitions.define(definition_name,template_name,options)
env.ui.info "The basebox '#{definition_name}' has been succesfully created from the template '#{template_name}'"
env.ui.info "The basebox '#{definition_name}' has been successfully created from the template '#{template_name}'"
env.ui.info "You can now edit the definition files stored in definitions/#{definition_name} or build the box with:"
env.ui.info "veewee kvm build '#{definition_name}'"
end
Expand Down
4 changes: 2 additions & 2 deletions lib/veewee/command/parallels.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def define(definition_name, template_name)
venv=Veewee::Environment.new(options)
venv.ui=env.ui
venv.definitions.define(definition_name,template_name,options)
env.ui.info "The basebox '#{definition_name}' has been succesfully created from the template '#{template_name}'"
env.ui.info "The basebox '#{definition_name}' has been successfully created from the template '#{template_name}'"
env.ui.info "You can now edit the definition files stored in definitions/#{definition_name} or build the box with:"
env.ui.info "veewee parallels build '#{definition_name}'"
end
Expand All @@ -70,7 +70,7 @@ def undefine(definition_name)
venv=Veewee::Environment.new(options)
venv.ui=env.ui
venv.definitions.undefine(definition_name,options)
env.ui.info "Definition #{definition_name} succesfully removed",:prefix => false
env.ui.info "Definition #{definition_name} successfully removed",:prefix => false
rescue Error => ex
env.ui.error "#{ex}" , :prefix => false
exit -1
Expand Down
2 changes: 1 addition & 1 deletion lib/veewee/command/vagrant/define.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def execute
definition_name=argv[0]
template_name=argv[1]
venv.definitions.define(definition_name,template_name,options)
venv.ui.info "The basebox '#{definition_name}' has been succesfully created from the template '#{template_name}'"
venv.ui.info "The basebox '#{definition_name}' has been successfully created from the template '#{template_name}'"
venv.ui.info "You can now edit the definition files stored in definitions/#{definition_name} or build the box with:"
venv.ui.info "vagrant basebox build '#{definition_name}'"
rescue Veewee::Error => ex
Expand Down
2 changes: 1 addition & 1 deletion lib/veewee/command/vagrant/undefine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def execute
venv.ui=@env.ui
definition_name=argv[0]
venv.definitions.undefine(definition_name,options)
venv.ui.info("Definition '#{definition_name}' succesfully removed",:prefix => false)
venv.ui.info("Definition '#{definition_name}' successfully removed",:prefix => false)
rescue Veewee::Error => ex
venv.ui.error(ex,:prefix => false)
exit -1
Expand Down
4 changes: 2 additions & 2 deletions lib/veewee/command/vbox.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def define(definition_name, template_name)
venv=Veewee::Environment.new(options)
venv.ui=env.ui
venv.definitions.define(definition_name,template_name,options)
env.ui.info "The basebox '#{definition_name}' has been succesfully created from the template '#{template_name}'"
env.ui.info "The basebox '#{definition_name}' has been successfully created from the template '#{template_name}'"
env.ui.info "You can now edit the definition files stored in definitions/#{definition_name} or build the box with:"
env.ui.info "veewee vbox build '#{definition_name}'"
end
Expand All @@ -91,7 +91,7 @@ def undefine(definition_name)
venv=Veewee::Environment.new(options)
venv.ui=env.ui
venv.definitions.undefine(definition_name,options)
env.ui.info "Definition #{definition_name} succesfully removed" , :prefix => false
env.ui.info "Definition #{definition_name} successfully removed" , :prefix => false
rescue Error => ex
env.ui.error("#{ex}",:prefix => false)
exit -1
Expand Down
2 changes: 1 addition & 1 deletion lib/veewee/provider/core/box/build.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def build(options={})

self.handle_postinstall(options)

ui.success "The box #{name} was build succesfully!"
ui.success "The box #{name} was build successfully!"
ui.info "You can now login to the box with:"
if (definition.winrm_user && definition.winrm_password)
env.ui.info winrm_command_string
Expand Down

0 comments on commit aca6dc3

Please sign in to comment.