This repository contains Packer templates for creating Ubuntu 16.04 LTS (Xenial Xerus) Server Vagrant boxes.
To build all the boxes, you will need VirtualBox
We make use of JSON files containing user variables to build specific versions of Ubuntu.
You tell packer
to use a specific user variable file via the -var-file=
command line
option. This will override the default options on the core core_template.json
packer template.
For example, to build Ubuntu 16.04, use the following:
$ packer build -var-file=ubuntu-1604.json core_template.json
We've also provided a wrapper script bin\build.sh
for ease of use, so alternatively, you can use
the following to build Ubuntu 16.04 for all providers:
$ ./bin/build.sh ubuntu-1604.json
- Fork and clone the repo.
- Create a new branch, please don't work in your
master
branch directly. - Fix stuff.
- Update
README.md
andAUTHORS
to reflect any changes. - If you have a large change in mind, it is still preferred that you split them into small commits. Good commit messages are important. The git documentation project has some nice guidelines on writing descriptive commit messages.
- Push to your fork and submit a pull request.
boxcutter for their work in providing the code on which this is based.