From 7b376ca9aba65186d7f06e24e6062b2e8a864b49 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 31 Jul 2010 08:40:26 -0700 Subject: [PATCH] Remove references to base.box, since it is no more --- docs/boxes.md | 10 +++++----- docs/converting_password_to_key_ssh.md | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/boxes.md b/docs/boxes.md index 7c5425823..66c2ccdc7 100644 --- a/docs/boxes.md +++ b/docs/boxes.md @@ -19,11 +19,11 @@ Boxes are also required as a base for all vagrant projects. The Boxes can be installed from the filesystem or via HTTP (note that if you're interested, its quite easy to extend this to support more protocols). No matter the source, the installation method is the same. -The following adds a box named `ubuntu_base` to a local vagrant +The following adds a box named `lucid32` to a local vagrant installation: {% highlight bash %} -$ vagrant box add ubuntu_base http://files.vagrantup.com/base.box +$ vagrant box add lucid32 http://files.vagrantup.com/lucid32.box {% endhighlight %} The name used with the `vagrant box add` command is the name used to @@ -38,11 +38,11 @@ first few commands tell you to add a box named "base" to the project. ## Removing a Box Boxes can just as easily be removed using the same `vagrant box` command. -The following command removes the `ubuntu_base` box which was added in the +The following command removes the `lucid32` box which was added in the previous section: {% highlight bash %} -$ vagrant box remove ubuntu_base +$ vagrant box remove lucid32 {% endhighlight %} **Warning:** There is no going back from this command. This command literally @@ -58,7 +58,7 @@ $ vagrant box list ===================================================================== Installed Vagrant Boxes: -base +lucid32 ===================================================================== {% endhighlight %} diff --git a/docs/converting_password_to_key_ssh.md b/docs/converting_password_to_key_ssh.md index 1d06d3480..7248b6016 100644 --- a/docs/converting_password_to_key_ssh.md +++ b/docs/converting_password_to_key_ssh.md @@ -14,7 +14,7 @@ key-based SSH.

We updated our boxes!

If you're not using a custom base box, and you're using one of the base - boxes we created (getting_started.box, base.box, etc.), + boxes we created (lucid32.box, lucid64.box, etc.) then just remove your old box and download the new one. We updated all of our boxes to work with 0.2.x!

@@ -85,4 +85,4 @@ $ vagrant package --include Vagrantfile This should spit out a `package.box` file in the current working directory which you can now re-add to your system and use. It should be a drop-in replacement for -your previously broken box. \ No newline at end of file +your previously broken box.