Remove .dev from Vagrantfiles file names

This commit is contained in:
Fabio Rehm 2013-03-09 16:11:49 -03:00
parent 7de73c8c9f
commit 755b2033fe
3 changed files with 2 additions and 5 deletions

View file

@ -126,7 +126,7 @@ ready for development:
```sh ```sh
bundle install bundle install
cd development cd development
cp Vagrantfile.dev.lxc Vagrantfile cp Vagrantfile.lxc Vagrantfile
# Required in order to allow nested containers to be started # Required in order to allow nested containers to be started
sudo apt-get install apparmor-utils && sudo aa-complain /usr/bin/lxc-start sudo apt-get install apparmor-utils && sudo aa-complain /usr/bin/lxc-start
./setup-lxc-dev-box ./setup-lxc-dev-box
@ -143,7 +143,7 @@ start nested containers there to try things out.
``` ```
cd development cd development
cp Vagrantfile.dev.vb Vagrantfile cp Vagrantfile.vb.1.0 Vagrantfile
vagrant up vagrant up
``` ```
@ -161,9 +161,6 @@ LXC_START_LOG_FILE=/tmp/lxc-start.log VAGRANT_LOG=debug vagrant-lxc up
This will output A LOT of information on your terminal and some useful information This will output A LOT of information on your terminal and some useful information
about `lxc-start` to `/tmp/lxc-start.log`. about `lxc-start` to `/tmp/lxc-start.log`.
Debugging whats going on with the container itself is a pain, there are some
nice little scripts on the [/dev](dev) folder of the project.
## Help! ## Help!