diff --git a/docs/getting-started/provisioning.md b/docs/getting-started/provisioning.md index 5b119891f..0f59fc851 100644 --- a/docs/getting-started/provisioning.md +++ b/docs/getting-started/provisioning.md @@ -51,4 +51,18 @@ and Vagrant will automatically provision it. If your environment is already running since you did an `up` in a previous step, just run `vagrant reload`, which will quickly restart your VM, skipping the import step. -TODO: create cookbooks and show output here +After Vagrant completes running, the web server will be up and running as well. +You can't see your website from your own browser yet, since we haven't covered +port forwarding, but you can verify that the provisioning works by SSHing into +the VM and checking the output of hitting `127.0.0.1`: + +{% highlight bash %} +$ vagrant ssh +... +vagrant@vagrantup:~$ wget -qO- 127.0.0.1 +

Hello from a Vagrant VM

+vagrant@vagrantup:~$ +{% endhighlight %} + +In the next step of the getting started guide, we'll show you how to view +your website using your own browser. diff --git a/docs/getting-started/setup.md b/docs/getting-started/setup.md index 0edf66cbf..85c090726 100644 --- a/docs/getting-started/setup.md +++ b/docs/getting-started/setup.md @@ -34,7 +34,7 @@ which we'll use later to showcase your VM. Run the following command in your project directory (the directory with the Vagrantfile): {% highlight bash %} -$ echo "

Hello from a Vagrant VM!

" > index.html +$ echo "

Hello from a Vagrant VM

" > index.html {% endhighlight %} The above steps could have been run in any order. Vagrant can easily be initialized diff --git a/docs/getting-started/ssh.md b/docs/getting-started/ssh.md index 01f5e170d..9540ace49 100644 --- a/docs/getting-started/ssh.md +++ b/docs/getting-started/ssh.md @@ -21,9 +21,7 @@ following: {% highlight bash %} $ vagrant ssh ... -Welcome to your vagrant instance! -Last login: Fri Mar 5 23:21:47 2010 from 10.0.2.2 -vagrant@vagrantbase:~$ +vagrant@vagrantup:~$ {% endhighlight %}