Skip to content
This repository has been archived by the owner on Nov 21, 2022. It is now read-only.

Update README.md #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,24 +192,26 @@ these instructions:

2. Edit the /etc/motd which is shown right after vagrant ssh login.

3. Zero out all the unused disk space in the VM with these commands:
3. Edit or create ~/CHANGELOG.txt to describe your changes. This will leave a history so your VM users can understand how this image is different from the baseline distribution.

4. Zero out all the unused disk space in the VM with these commands:

```
dd if=/dev/zero of=/EMPTY bs=1M
rm -f /EMPTY
```

5. Exit the vagrant shell and vagrant halt it.

4. Exit the vagrant shell and vagrant halt it.

5. Make sure there is a Vagrantfile in the directory with this content:
6. Make sure there is a Vagrantfile in the directory with this content:

```
Vagrant.configure("2") do |config|
config.vm.network :forwarded_port, guest: 3000, host: 3000
end
```

6. Create the new package with this command. NAME is the name of the box
7. Create the new package with this command. NAME is the name of the box
you're creating, e.g. railsbridgevm-3.2.box:

```
Expand Down