This script will:
- download the
Debian 7.0 "Wheezy"
server, 64bit iso - ... do some magic to turn it into a vagrant box file
- output package.box
./build.sh
This should do everything you need. If you don't have
mkisofs
, install homebrew, then:
brew install cdrtools
If you need to install bsdtar
, use the following commands:
brew update
brew install libarchive
To add package.box
with name debian-70
into vagrant:
vagrant box add "debian-70" package.box
This script basted on original Carl's repo and with some tweaks to be compatible Debian 7.0.