Minor tweaks to README

This commit is contained in:
Fabio Rehm 2013-05-08 21:17:12 -03:00
parent 31c0d8d1a6
commit f191e51443

View file

@ -161,8 +161,8 @@ sudo apt-get install apparmor-utils
sudo aa-complain /usr/bin/lxc-start sudo aa-complain /usr/bin/lxc-start
bundle install bundle install
cd development cd development
bundle exec vagrant up lxc --provider=lxc bundle exec vagrant up quantal --provider=lxc
bundle exec vagrant ssh lxc bundle exec vagrant ssh quantal
``` ```
That should result in a container ready to be `bundle exec vagrant ssh`ed. That should result in a container ready to be `bundle exec vagrant ssh`ed.
@ -175,10 +175,11 @@ start nested containers there to try things out.
``` ```
cd development cd development
bundle exec vagrant up vbox # Pass in --provider=virtualbox in case you have VAGRANT_DEFAULT_PROVIDER set to something else
bundle exec vagrant up quantal
# A reload is needed to ensure the updated kernel gets loaded # A reload is needed to ensure the updated kernel gets loaded
bundle exec vagrant reload vbox bundle exec vagrant reload quantal
bundle exec vagrant ssh vbox bundle exec vagrant ssh quantal
``` ```