diff --git a/docs/getting-started/ports.md b/docs/getting-started/ports.md index 8ee2dbd6c..caaef8839 100644 --- a/docs/getting-started/ports.md +++ b/docs/getting-started/ports.md @@ -40,4 +40,13 @@ But if you already have a running system, calling `vagrant reload` will apply them without re-importing and re-building everything. Note that forwarding ports requires a virtual machine restart since VirtualBox -won't pick up on the forwarded ports until it is completely restarted. \ No newline at end of file +won't pick up on the forwarded ports until it is completely restarted. + +## Results! + +At this point, after running `vagrant up`, you should be able to take your +regular old browser to `localhost:8080` and see the following page. Sure, +it's an error page, but it means that rails is running and everything is +working! + +![Success!](/images/getting-started/success.jpg) \ No newline at end of file diff --git a/docs/getting-started/provisioning.md b/docs/getting-started/provisioning.md index ca6b83d53..e6a059fc3 100644 --- a/docs/getting-started/provisioning.md +++ b/docs/getting-started/provisioning.md @@ -38,9 +38,7 @@ should be at `cookbooks/htop/recipes/default.rb`. {% highlight ruby %} # Install the htop package via the packaging system -package "htop" do - action :install -end +package "htop" {% endhighlight %} ## Creating the `vagrant_main` Cookbook @@ -109,6 +107,6 @@ environment and trying to execute `htop`: {% highlight bash %} $ vagrant ssh ... -vagrant-instance ~$ htop -... +vagrant-instance ~$ which htop +/usr/bin/htop {% endhighlight %} \ No newline at end of file diff --git a/images/getting-started/success.jpg b/images/getting-started/success.jpg new file mode 100644 index 000000000..33d7e3d9a Binary files /dev/null and b/images/getting-started/success.jpg differ