├── .gitignore ├── LICENSE ├── README.md ├── alpine3.1.3 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── alpine-3.1.3-x86_64.json ├── http │ └── answers ├── scripts │ ├── 00base.sh │ ├── 01alpine.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh └── sh_vars ├── alpine3.2.3 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── alpine-3.2.3-x86_64.json ├── http │ └── answers ├── scripts │ ├── 00base.sh │ ├── 01alpine.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh └── sh_vars ├── alpine3.3.1 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── alpine-3.3.1-x86_64.json ├── http │ └── answers ├── scripts │ ├── 00base.sh │ ├── 01alpine.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh └── sh_vars ├── alpine3.3 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── alpine-3.3-x86_64.json ├── http │ └── answers ├── scripts │ ├── 00base.sh │ ├── 01alpine.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh └── sh_vars ├── alpine3.4 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── alpine-3.4-x86_64.json ├── http │ └── answers ├── scripts │ ├── 00base.sh │ ├── 01alpine.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh └── sh_vars ├── alpine3.5 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── alpine-3.5-x86_64.json ├── http │ └── answers ├── scripts │ ├── 00base.sh │ ├── 01alpine.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh └── sh_vars ├── alpine3.6 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── alpine-3.6-x86_64.json ├── build.conf ├── http │ └── answers └── scripts │ ├── 00base.sh │ ├── 01alpine.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh ├── alpine3.7 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── alpine-3.7-x86_64.json ├── build.conf ├── http │ └── answers └── scripts │ ├── 00base.sh │ ├── 01alpine.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh ├── alpine3.8 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── alpine-3.8-x86_64.json ├── build.conf ├── http │ └── answers └── scripts │ ├── 00base.sh │ ├── 01alpine.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh ├── atlas.sh ├── centos6.3 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── centos-6.3-x86_64.json ├── http │ └── kickstart.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── centos6.5 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── centos-6.5-x86_64.json ├── http │ └── kickstart.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── centos6.6 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── centos-6.6-x86_64.json ├── http │ └── kickstart.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── centos6.7 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── centos-6.7-x86_64.json ├── http │ └── kickstart.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── centos6.8 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── centos-6.8-x86_64.json ├── http │ └── kickstart.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── centos7.1.1503 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── centos-7.1.1503-x86_64.json ├── http │ └── kickstart.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── centos7.2.1511 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── centos-7.2.1511-x86_64.json ├── http │ └── kickstart.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── centos7.3.1611 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── centos-7.3.1611-x86_64.json ├── http │ └── kickstart.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── centos7.4.1708 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── centos-7.4.1708-x86_64.json ├── http │ └── kickstart.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── centos7.5.1804 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── build.conf ├── centos-7.5.1804-x86_64.json ├── http │ └── kickstart.cfg └── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh ├── debian7.11 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── debian-7.11.0-x86_64.json ├── http │ └── preseed.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── debian8.7 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── debian-8.7.0-x86_64.json ├── http │ └── preseed.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── debian9.1 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── debian-9.1.0-x86_64.json ├── http │ └── preseed.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh └── sh_vars ├── omnios-r151006 ├── CHANGELOG.md ├── README.md ├── files │ └── fake_floppy.txt ├── omnios-r151006-x86_64.json ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 91update.sh │ └── 99minimize.sh └── sh_vars ├── omnios-r151014 ├── CHANGELOG.md ├── README.md ├── files │ └── fake_floppy.txt ├── omnios-r151014-x86_64.json ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 01update.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 05development.sh │ ├── 90virtualbox.sh │ └── 99minimize.sh └── sh_vars ├── skel ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── http │ └── README.md ├── scripts │ └── 00base.sh ├── sh_vars └── skeltempl.json ├── ubuntu-14.04 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── http │ └── preseed.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh ├── sh_vars └── ubuntu-14.04-x86_64.json ├── ubuntu-16.04 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── http │ └── preseed.cfg ├── scripts │ ├── 00base.sh │ ├── 01networking.sh │ ├── 02sshd.sh │ ├── 03vagrant.sh │ ├── 04sudoers.sh │ ├── 90virtualbox.sh │ ├── 99cleanup.sh │ └── 99minimize.sh ├── sh_vars └── ubuntu-16.04-x86_64.json └── ubuntu-18.04 ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── build.conf ├── http └── preseed.cfg ├── scripts ├── 00base.sh ├── 01networking.sh ├── 02sshd.sh ├── 03vagrant.sh ├── 04sudoers.sh ├── 90virtualbox.sh ├── 99cleanup.sh └── 99minimize.sh └── ubuntu-18.04-x86_64.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/README.md -------------------------------------------------------------------------------- /alpine3.1.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/CHANGELOG.md -------------------------------------------------------------------------------- /alpine3.1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/README.md -------------------------------------------------------------------------------- /alpine3.1.3/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/Vagrantfile -------------------------------------------------------------------------------- /alpine3.1.3/alpine-3.1.3-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/alpine-3.1.3-x86_64.json -------------------------------------------------------------------------------- /alpine3.1.3/http/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/http/answers -------------------------------------------------------------------------------- /alpine3.1.3/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/scripts/00base.sh -------------------------------------------------------------------------------- /alpine3.1.3/scripts/01alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/scripts/01alpine.sh -------------------------------------------------------------------------------- /alpine3.1.3/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.1.3/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/scripts/02sshd.sh -------------------------------------------------------------------------------- /alpine3.1.3/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/scripts/03vagrant.sh -------------------------------------------------------------------------------- /alpine3.1.3/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/scripts/04sudoers.sh -------------------------------------------------------------------------------- /alpine3.1.3/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /alpine3.1.3/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/scripts/99minimize.sh -------------------------------------------------------------------------------- /alpine3.1.3/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.1.3/sh_vars -------------------------------------------------------------------------------- /alpine3.2.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/CHANGELOG.md -------------------------------------------------------------------------------- /alpine3.2.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/README.md -------------------------------------------------------------------------------- /alpine3.2.3/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/Vagrantfile -------------------------------------------------------------------------------- /alpine3.2.3/alpine-3.2.3-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/alpine-3.2.3-x86_64.json -------------------------------------------------------------------------------- /alpine3.2.3/http/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/http/answers -------------------------------------------------------------------------------- /alpine3.2.3/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/scripts/00base.sh -------------------------------------------------------------------------------- /alpine3.2.3/scripts/01alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/scripts/01alpine.sh -------------------------------------------------------------------------------- /alpine3.2.3/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.2.3/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/scripts/02sshd.sh -------------------------------------------------------------------------------- /alpine3.2.3/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/scripts/03vagrant.sh -------------------------------------------------------------------------------- /alpine3.2.3/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/scripts/04sudoers.sh -------------------------------------------------------------------------------- /alpine3.2.3/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /alpine3.2.3/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/scripts/99minimize.sh -------------------------------------------------------------------------------- /alpine3.2.3/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.2.3/sh_vars -------------------------------------------------------------------------------- /alpine3.3.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/CHANGELOG.md -------------------------------------------------------------------------------- /alpine3.3.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/README.md -------------------------------------------------------------------------------- /alpine3.3.1/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/Vagrantfile -------------------------------------------------------------------------------- /alpine3.3.1/alpine-3.3.1-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/alpine-3.3.1-x86_64.json -------------------------------------------------------------------------------- /alpine3.3.1/http/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/http/answers -------------------------------------------------------------------------------- /alpine3.3.1/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/scripts/00base.sh -------------------------------------------------------------------------------- /alpine3.3.1/scripts/01alpine.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.3.1/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.3.1/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/scripts/02sshd.sh -------------------------------------------------------------------------------- /alpine3.3.1/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/scripts/03vagrant.sh -------------------------------------------------------------------------------- /alpine3.3.1/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/scripts/04sudoers.sh -------------------------------------------------------------------------------- /alpine3.3.1/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /alpine3.3.1/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/scripts/99minimize.sh -------------------------------------------------------------------------------- /alpine3.3.1/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3.1/sh_vars -------------------------------------------------------------------------------- /alpine3.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/CHANGELOG.md -------------------------------------------------------------------------------- /alpine3.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/README.md -------------------------------------------------------------------------------- /alpine3.3/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/Vagrantfile -------------------------------------------------------------------------------- /alpine3.3/alpine-3.3-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/alpine-3.3-x86_64.json -------------------------------------------------------------------------------- /alpine3.3/http/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/http/answers -------------------------------------------------------------------------------- /alpine3.3/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/scripts/00base.sh -------------------------------------------------------------------------------- /alpine3.3/scripts/01alpine.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.3/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.3/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/scripts/02sshd.sh -------------------------------------------------------------------------------- /alpine3.3/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/scripts/03vagrant.sh -------------------------------------------------------------------------------- /alpine3.3/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/scripts/04sudoers.sh -------------------------------------------------------------------------------- /alpine3.3/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /alpine3.3/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/scripts/99minimize.sh -------------------------------------------------------------------------------- /alpine3.3/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.3/sh_vars -------------------------------------------------------------------------------- /alpine3.4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/CHANGELOG.md -------------------------------------------------------------------------------- /alpine3.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/README.md -------------------------------------------------------------------------------- /alpine3.4/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/Vagrantfile -------------------------------------------------------------------------------- /alpine3.4/alpine-3.4-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/alpine-3.4-x86_64.json -------------------------------------------------------------------------------- /alpine3.4/http/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/http/answers -------------------------------------------------------------------------------- /alpine3.4/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/scripts/00base.sh -------------------------------------------------------------------------------- /alpine3.4/scripts/01alpine.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.4/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.4/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/scripts/02sshd.sh -------------------------------------------------------------------------------- /alpine3.4/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/scripts/03vagrant.sh -------------------------------------------------------------------------------- /alpine3.4/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/scripts/04sudoers.sh -------------------------------------------------------------------------------- /alpine3.4/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /alpine3.4/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/scripts/99minimize.sh -------------------------------------------------------------------------------- /alpine3.4/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.4/sh_vars -------------------------------------------------------------------------------- /alpine3.5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/CHANGELOG.md -------------------------------------------------------------------------------- /alpine3.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/README.md -------------------------------------------------------------------------------- /alpine3.5/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/Vagrantfile -------------------------------------------------------------------------------- /alpine3.5/alpine-3.5-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/alpine-3.5-x86_64.json -------------------------------------------------------------------------------- /alpine3.5/http/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/http/answers -------------------------------------------------------------------------------- /alpine3.5/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/scripts/00base.sh -------------------------------------------------------------------------------- /alpine3.5/scripts/01alpine.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.5/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.5/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/scripts/02sshd.sh -------------------------------------------------------------------------------- /alpine3.5/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/scripts/03vagrant.sh -------------------------------------------------------------------------------- /alpine3.5/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/scripts/04sudoers.sh -------------------------------------------------------------------------------- /alpine3.5/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /alpine3.5/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/scripts/99minimize.sh -------------------------------------------------------------------------------- /alpine3.5/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.5/sh_vars -------------------------------------------------------------------------------- /alpine3.6/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/CHANGELOG.md -------------------------------------------------------------------------------- /alpine3.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/README.md -------------------------------------------------------------------------------- /alpine3.6/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/Vagrantfile -------------------------------------------------------------------------------- /alpine3.6/alpine-3.6-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/alpine-3.6-x86_64.json -------------------------------------------------------------------------------- /alpine3.6/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/build.conf -------------------------------------------------------------------------------- /alpine3.6/http/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/http/answers -------------------------------------------------------------------------------- /alpine3.6/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/scripts/00base.sh -------------------------------------------------------------------------------- /alpine3.6/scripts/01alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/scripts/01alpine.sh -------------------------------------------------------------------------------- /alpine3.6/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.6/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/scripts/02sshd.sh -------------------------------------------------------------------------------- /alpine3.6/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/scripts/03vagrant.sh -------------------------------------------------------------------------------- /alpine3.6/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/scripts/04sudoers.sh -------------------------------------------------------------------------------- /alpine3.6/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /alpine3.6/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.6/scripts/99minimize.sh -------------------------------------------------------------------------------- /alpine3.7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/CHANGELOG.md -------------------------------------------------------------------------------- /alpine3.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/README.md -------------------------------------------------------------------------------- /alpine3.7/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/Vagrantfile -------------------------------------------------------------------------------- /alpine3.7/alpine-3.7-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/alpine-3.7-x86_64.json -------------------------------------------------------------------------------- /alpine3.7/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/build.conf -------------------------------------------------------------------------------- /alpine3.7/http/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/http/answers -------------------------------------------------------------------------------- /alpine3.7/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/scripts/00base.sh -------------------------------------------------------------------------------- /alpine3.7/scripts/01alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/scripts/01alpine.sh -------------------------------------------------------------------------------- /alpine3.7/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.7/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/scripts/02sshd.sh -------------------------------------------------------------------------------- /alpine3.7/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/scripts/03vagrant.sh -------------------------------------------------------------------------------- /alpine3.7/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/scripts/04sudoers.sh -------------------------------------------------------------------------------- /alpine3.7/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /alpine3.7/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.7/scripts/99minimize.sh -------------------------------------------------------------------------------- /alpine3.8/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/CHANGELOG.md -------------------------------------------------------------------------------- /alpine3.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/README.md -------------------------------------------------------------------------------- /alpine3.8/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/Vagrantfile -------------------------------------------------------------------------------- /alpine3.8/alpine-3.8-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/alpine-3.8-x86_64.json -------------------------------------------------------------------------------- /alpine3.8/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/build.conf -------------------------------------------------------------------------------- /alpine3.8/http/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/http/answers -------------------------------------------------------------------------------- /alpine3.8/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/scripts/00base.sh -------------------------------------------------------------------------------- /alpine3.8/scripts/01alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/scripts/01alpine.sh -------------------------------------------------------------------------------- /alpine3.8/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ux 2 | 3 | # nothing special required 4 | 5 | exit 0 -------------------------------------------------------------------------------- /alpine3.8/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/scripts/02sshd.sh -------------------------------------------------------------------------------- /alpine3.8/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/scripts/03vagrant.sh -------------------------------------------------------------------------------- /alpine3.8/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/scripts/04sudoers.sh -------------------------------------------------------------------------------- /alpine3.8/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /alpine3.8/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/alpine3.8/scripts/99minimize.sh -------------------------------------------------------------------------------- /atlas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/atlas.sh -------------------------------------------------------------------------------- /centos6.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/CHANGELOG.md -------------------------------------------------------------------------------- /centos6.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/README.md -------------------------------------------------------------------------------- /centos6.3/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/Vagrantfile -------------------------------------------------------------------------------- /centos6.3/centos-6.3-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/centos-6.3-x86_64.json -------------------------------------------------------------------------------- /centos6.3/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/http/kickstart.cfg -------------------------------------------------------------------------------- /centos6.3/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/scripts/00base.sh -------------------------------------------------------------------------------- /centos6.3/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.3/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos6.3/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos6.3/scripts/04sudoers.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.3/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos6.3/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos6.3/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/scripts/99minimize.sh -------------------------------------------------------------------------------- /centos6.3/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.3/sh_vars -------------------------------------------------------------------------------- /centos6.5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/CHANGELOG.md -------------------------------------------------------------------------------- /centos6.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/README.md -------------------------------------------------------------------------------- /centos6.5/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/Vagrantfile -------------------------------------------------------------------------------- /centos6.5/centos-6.5-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/centos-6.5-x86_64.json -------------------------------------------------------------------------------- /centos6.5/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/http/kickstart.cfg -------------------------------------------------------------------------------- /centos6.5/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/scripts/00base.sh -------------------------------------------------------------------------------- /centos6.5/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.5/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos6.5/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos6.5/scripts/04sudoers.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.5/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos6.5/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos6.5/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/scripts/99minimize.sh -------------------------------------------------------------------------------- /centos6.5/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.5/sh_vars -------------------------------------------------------------------------------- /centos6.6/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/CHANGELOG.md -------------------------------------------------------------------------------- /centos6.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/README.md -------------------------------------------------------------------------------- /centos6.6/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/Vagrantfile -------------------------------------------------------------------------------- /centos6.6/centos-6.6-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/centos-6.6-x86_64.json -------------------------------------------------------------------------------- /centos6.6/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/http/kickstart.cfg -------------------------------------------------------------------------------- /centos6.6/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/scripts/00base.sh -------------------------------------------------------------------------------- /centos6.6/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.6/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos6.6/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos6.6/scripts/04sudoers.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.6/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos6.6/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos6.6/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/scripts/99minimize.sh -------------------------------------------------------------------------------- /centos6.6/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.6/sh_vars -------------------------------------------------------------------------------- /centos6.7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/CHANGELOG.md -------------------------------------------------------------------------------- /centos6.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/README.md -------------------------------------------------------------------------------- /centos6.7/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/Vagrantfile -------------------------------------------------------------------------------- /centos6.7/centos-6.7-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/centos-6.7-x86_64.json -------------------------------------------------------------------------------- /centos6.7/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/http/kickstart.cfg -------------------------------------------------------------------------------- /centos6.7/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/scripts/00base.sh -------------------------------------------------------------------------------- /centos6.7/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.7/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos6.7/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos6.7/scripts/04sudoers.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.7/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos6.7/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos6.7/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/scripts/99minimize.sh -------------------------------------------------------------------------------- /centos6.7/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.7/sh_vars -------------------------------------------------------------------------------- /centos6.8/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/CHANGELOG.md -------------------------------------------------------------------------------- /centos6.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/README.md -------------------------------------------------------------------------------- /centos6.8/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/Vagrantfile -------------------------------------------------------------------------------- /centos6.8/centos-6.8-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/centos-6.8-x86_64.json -------------------------------------------------------------------------------- /centos6.8/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/http/kickstart.cfg -------------------------------------------------------------------------------- /centos6.8/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/scripts/00base.sh -------------------------------------------------------------------------------- /centos6.8/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.8/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos6.8/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos6.8/scripts/04sudoers.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos6.8/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos6.8/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos6.8/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/scripts/99minimize.sh -------------------------------------------------------------------------------- /centos6.8/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos6.8/sh_vars -------------------------------------------------------------------------------- /centos7.1.1503/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/CHANGELOG.md -------------------------------------------------------------------------------- /centos7.1.1503/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/README.md -------------------------------------------------------------------------------- /centos7.1.1503/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/Vagrantfile -------------------------------------------------------------------------------- /centos7.1.1503/centos-7.1.1503-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/centos-7.1.1503-x86_64.json -------------------------------------------------------------------------------- /centos7.1.1503/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/http/kickstart.cfg -------------------------------------------------------------------------------- /centos7.1.1503/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/scripts/00base.sh -------------------------------------------------------------------------------- /centos7.1.1503/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos7.1.1503/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos7.1.1503/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos7.1.1503/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/scripts/04sudoers.sh -------------------------------------------------------------------------------- /centos7.1.1503/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos7.1.1503/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos7.1.1503/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/scripts/99minimize.sh -------------------------------------------------------------------------------- /centos7.1.1503/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.1.1503/sh_vars -------------------------------------------------------------------------------- /centos7.2.1511/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/CHANGELOG.md -------------------------------------------------------------------------------- /centos7.2.1511/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/README.md -------------------------------------------------------------------------------- /centos7.2.1511/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/Vagrantfile -------------------------------------------------------------------------------- /centos7.2.1511/centos-7.2.1511-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/centos-7.2.1511-x86_64.json -------------------------------------------------------------------------------- /centos7.2.1511/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/http/kickstart.cfg -------------------------------------------------------------------------------- /centos7.2.1511/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/scripts/00base.sh -------------------------------------------------------------------------------- /centos7.2.1511/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos7.2.1511/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos7.2.1511/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos7.2.1511/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/scripts/04sudoers.sh -------------------------------------------------------------------------------- /centos7.2.1511/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos7.2.1511/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos7.2.1511/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/scripts/99minimize.sh -------------------------------------------------------------------------------- /centos7.2.1511/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.2.1511/sh_vars -------------------------------------------------------------------------------- /centos7.3.1611/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/CHANGELOG.md -------------------------------------------------------------------------------- /centos7.3.1611/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/README.md -------------------------------------------------------------------------------- /centos7.3.1611/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/Vagrantfile -------------------------------------------------------------------------------- /centos7.3.1611/centos-7.3.1611-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/centos-7.3.1611-x86_64.json -------------------------------------------------------------------------------- /centos7.3.1611/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/http/kickstart.cfg -------------------------------------------------------------------------------- /centos7.3.1611/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/scripts/00base.sh -------------------------------------------------------------------------------- /centos7.3.1611/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos7.3.1611/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos7.3.1611/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos7.3.1611/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/scripts/04sudoers.sh -------------------------------------------------------------------------------- /centos7.3.1611/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos7.3.1611/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos7.3.1611/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/scripts/99minimize.sh -------------------------------------------------------------------------------- /centos7.3.1611/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.3.1611/sh_vars -------------------------------------------------------------------------------- /centos7.4.1708/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/CHANGELOG.md -------------------------------------------------------------------------------- /centos7.4.1708/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/README.md -------------------------------------------------------------------------------- /centos7.4.1708/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/Vagrantfile -------------------------------------------------------------------------------- /centos7.4.1708/centos-7.4.1708-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/centos-7.4.1708-x86_64.json -------------------------------------------------------------------------------- /centos7.4.1708/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/http/kickstart.cfg -------------------------------------------------------------------------------- /centos7.4.1708/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/scripts/00base.sh -------------------------------------------------------------------------------- /centos7.4.1708/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos7.4.1708/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos7.4.1708/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos7.4.1708/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/scripts/04sudoers.sh -------------------------------------------------------------------------------- /centos7.4.1708/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos7.4.1708/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos7.4.1708/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/scripts/99minimize.sh -------------------------------------------------------------------------------- /centos7.4.1708/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.4.1708/sh_vars -------------------------------------------------------------------------------- /centos7.5.1804/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/CHANGELOG.md -------------------------------------------------------------------------------- /centos7.5.1804/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/README.md -------------------------------------------------------------------------------- /centos7.5.1804/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/Vagrantfile -------------------------------------------------------------------------------- /centos7.5.1804/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/build.conf -------------------------------------------------------------------------------- /centos7.5.1804/centos-7.5.1804-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/centos-7.5.1804-x86_64.json -------------------------------------------------------------------------------- /centos7.5.1804/http/kickstart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/http/kickstart.cfg -------------------------------------------------------------------------------- /centos7.5.1804/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/scripts/00base.sh -------------------------------------------------------------------------------- /centos7.5.1804/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -eux 2 | exit 0 3 | # taken care of in kickstart 4 | -------------------------------------------------------------------------------- /centos7.5.1804/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/scripts/02sshd.sh -------------------------------------------------------------------------------- /centos7.5.1804/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/scripts/03vagrant.sh -------------------------------------------------------------------------------- /centos7.5.1804/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/scripts/04sudoers.sh -------------------------------------------------------------------------------- /centos7.5.1804/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /centos7.5.1804/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/scripts/99cleanup.sh -------------------------------------------------------------------------------- /centos7.5.1804/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/centos7.5.1804/scripts/99minimize.sh -------------------------------------------------------------------------------- /debian7.11/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/CHANGELOG.md -------------------------------------------------------------------------------- /debian7.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/README.md -------------------------------------------------------------------------------- /debian7.11/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/Vagrantfile -------------------------------------------------------------------------------- /debian7.11/debian-7.11.0-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/debian-7.11.0-x86_64.json -------------------------------------------------------------------------------- /debian7.11/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/http/preseed.cfg -------------------------------------------------------------------------------- /debian7.11/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/scripts/00base.sh -------------------------------------------------------------------------------- /debian7.11/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ex 2 | 3 | echo "pre-up sleep 2" >> /etc/network/interfaces 4 | -------------------------------------------------------------------------------- /debian7.11/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/scripts/02sshd.sh -------------------------------------------------------------------------------- /debian7.11/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/scripts/03vagrant.sh -------------------------------------------------------------------------------- /debian7.11/scripts/04sudoers.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | # taken care of in 00base 3 | exit 0 4 | -------------------------------------------------------------------------------- /debian7.11/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /debian7.11/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/scripts/99cleanup.sh -------------------------------------------------------------------------------- /debian7.11/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/scripts/99minimize.sh -------------------------------------------------------------------------------- /debian7.11/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian7.11/sh_vars -------------------------------------------------------------------------------- /debian8.7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/CHANGELOG.md -------------------------------------------------------------------------------- /debian8.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/README.md -------------------------------------------------------------------------------- /debian8.7/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/Vagrantfile -------------------------------------------------------------------------------- /debian8.7/debian-8.7.0-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/debian-8.7.0-x86_64.json -------------------------------------------------------------------------------- /debian8.7/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/http/preseed.cfg -------------------------------------------------------------------------------- /debian8.7/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/scripts/00base.sh -------------------------------------------------------------------------------- /debian8.7/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ex 2 | 3 | echo "pre-up sleep 2" >> /etc/network/interfaces 4 | -------------------------------------------------------------------------------- /debian8.7/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/scripts/02sshd.sh -------------------------------------------------------------------------------- /debian8.7/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/scripts/03vagrant.sh -------------------------------------------------------------------------------- /debian8.7/scripts/04sudoers.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | # taken care of in 00base 3 | exit 0 4 | -------------------------------------------------------------------------------- /debian8.7/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /debian8.7/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/scripts/99cleanup.sh -------------------------------------------------------------------------------- /debian8.7/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/scripts/99minimize.sh -------------------------------------------------------------------------------- /debian8.7/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian8.7/sh_vars -------------------------------------------------------------------------------- /debian9.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/CHANGELOG.md -------------------------------------------------------------------------------- /debian9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/README.md -------------------------------------------------------------------------------- /debian9.1/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/Vagrantfile -------------------------------------------------------------------------------- /debian9.1/debian-9.1.0-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/debian-9.1.0-x86_64.json -------------------------------------------------------------------------------- /debian9.1/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/http/preseed.cfg -------------------------------------------------------------------------------- /debian9.1/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/scripts/00base.sh -------------------------------------------------------------------------------- /debian9.1/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ex 2 | 3 | echo "pre-up sleep 2" >> /etc/network/interfaces 4 | -------------------------------------------------------------------------------- /debian9.1/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/scripts/02sshd.sh -------------------------------------------------------------------------------- /debian9.1/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/scripts/03vagrant.sh -------------------------------------------------------------------------------- /debian9.1/scripts/04sudoers.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | # taken care of in 00base 3 | exit 0 4 | -------------------------------------------------------------------------------- /debian9.1/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /debian9.1/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/scripts/99cleanup.sh -------------------------------------------------------------------------------- /debian9.1/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/scripts/99minimize.sh -------------------------------------------------------------------------------- /debian9.1/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/debian9.1/sh_vars -------------------------------------------------------------------------------- /omnios-r151006/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/CHANGELOG.md -------------------------------------------------------------------------------- /omnios-r151006/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/README.md -------------------------------------------------------------------------------- /omnios-r151006/files/fake_floppy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omnios-r151006/omnios-r151006-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/omnios-r151006-x86_64.json -------------------------------------------------------------------------------- /omnios-r151006/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/scripts/00base.sh -------------------------------------------------------------------------------- /omnios-r151006/scripts/01networking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/scripts/01networking.sh -------------------------------------------------------------------------------- /omnios-r151006/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/scripts/02sshd.sh -------------------------------------------------------------------------------- /omnios-r151006/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/scripts/03vagrant.sh -------------------------------------------------------------------------------- /omnios-r151006/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/scripts/04sudoers.sh -------------------------------------------------------------------------------- /omnios-r151006/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /omnios-r151006/scripts/91update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/scripts/91update.sh -------------------------------------------------------------------------------- /omnios-r151006/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/scripts/99minimize.sh -------------------------------------------------------------------------------- /omnios-r151006/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151006/sh_vars -------------------------------------------------------------------------------- /omnios-r151014/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/CHANGELOG.md -------------------------------------------------------------------------------- /omnios-r151014/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/README.md -------------------------------------------------------------------------------- /omnios-r151014/files/fake_floppy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omnios-r151014/omnios-r151014-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/omnios-r151014-x86_64.json -------------------------------------------------------------------------------- /omnios-r151014/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/scripts/00base.sh -------------------------------------------------------------------------------- /omnios-r151014/scripts/01networking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/scripts/01networking.sh -------------------------------------------------------------------------------- /omnios-r151014/scripts/01update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/scripts/01update.sh -------------------------------------------------------------------------------- /omnios-r151014/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/scripts/02sshd.sh -------------------------------------------------------------------------------- /omnios-r151014/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/scripts/03vagrant.sh -------------------------------------------------------------------------------- /omnios-r151014/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/scripts/04sudoers.sh -------------------------------------------------------------------------------- /omnios-r151014/scripts/05development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/scripts/05development.sh -------------------------------------------------------------------------------- /omnios-r151014/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /omnios-r151014/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/scripts/99minimize.sh -------------------------------------------------------------------------------- /omnios-r151014/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/omnios-r151014/sh_vars -------------------------------------------------------------------------------- /skel/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skel/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skel/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/skel/Vagrantfile -------------------------------------------------------------------------------- /skel/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/skel/http/README.md -------------------------------------------------------------------------------- /skel/scripts/00base.sh: -------------------------------------------------------------------------------- 1 | set -exu 2 | # add base tasks here 3 | exit 0 4 | -------------------------------------------------------------------------------- /skel/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/skel/sh_vars -------------------------------------------------------------------------------- /skel/skeltempl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/skel/skeltempl.json -------------------------------------------------------------------------------- /ubuntu-14.04/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ubuntu-14.04/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ubuntu-14.04/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/Vagrantfile -------------------------------------------------------------------------------- /ubuntu-14.04/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/http/preseed.cfg -------------------------------------------------------------------------------- /ubuntu-14.04/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/scripts/00base.sh -------------------------------------------------------------------------------- /ubuntu-14.04/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ex 2 | exit 0 3 | -------------------------------------------------------------------------------- /ubuntu-14.04/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/scripts/02sshd.sh -------------------------------------------------------------------------------- /ubuntu-14.04/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/scripts/03vagrant.sh -------------------------------------------------------------------------------- /ubuntu-14.04/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/scripts/04sudoers.sh -------------------------------------------------------------------------------- /ubuntu-14.04/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /ubuntu-14.04/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/scripts/99cleanup.sh -------------------------------------------------------------------------------- /ubuntu-14.04/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/scripts/99minimize.sh -------------------------------------------------------------------------------- /ubuntu-14.04/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/sh_vars -------------------------------------------------------------------------------- /ubuntu-14.04/ubuntu-14.04-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-14.04/ubuntu-14.04-x86_64.json -------------------------------------------------------------------------------- /ubuntu-16.04/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/CHANGELOG.md -------------------------------------------------------------------------------- /ubuntu-16.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/README.md -------------------------------------------------------------------------------- /ubuntu-16.04/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/Vagrantfile -------------------------------------------------------------------------------- /ubuntu-16.04/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/http/preseed.cfg -------------------------------------------------------------------------------- /ubuntu-16.04/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/scripts/00base.sh -------------------------------------------------------------------------------- /ubuntu-16.04/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ex 2 | exit 0 3 | -------------------------------------------------------------------------------- /ubuntu-16.04/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/scripts/02sshd.sh -------------------------------------------------------------------------------- /ubuntu-16.04/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/scripts/03vagrant.sh -------------------------------------------------------------------------------- /ubuntu-16.04/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/scripts/04sudoers.sh -------------------------------------------------------------------------------- /ubuntu-16.04/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /ubuntu-16.04/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/scripts/99cleanup.sh -------------------------------------------------------------------------------- /ubuntu-16.04/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/scripts/99minimize.sh -------------------------------------------------------------------------------- /ubuntu-16.04/sh_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/sh_vars -------------------------------------------------------------------------------- /ubuntu-16.04/ubuntu-16.04-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-16.04/ubuntu-16.04-x86_64.json -------------------------------------------------------------------------------- /ubuntu-18.04/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/CHANGELOG.md -------------------------------------------------------------------------------- /ubuntu-18.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/README.md -------------------------------------------------------------------------------- /ubuntu-18.04/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/Vagrantfile -------------------------------------------------------------------------------- /ubuntu-18.04/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/build.conf -------------------------------------------------------------------------------- /ubuntu-18.04/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/http/preseed.cfg -------------------------------------------------------------------------------- /ubuntu-18.04/scripts/00base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/scripts/00base.sh -------------------------------------------------------------------------------- /ubuntu-18.04/scripts/01networking.sh: -------------------------------------------------------------------------------- 1 | set -ex 2 | exit 0 3 | -------------------------------------------------------------------------------- /ubuntu-18.04/scripts/02sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/scripts/02sshd.sh -------------------------------------------------------------------------------- /ubuntu-18.04/scripts/03vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/scripts/03vagrant.sh -------------------------------------------------------------------------------- /ubuntu-18.04/scripts/04sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/scripts/04sudoers.sh -------------------------------------------------------------------------------- /ubuntu-18.04/scripts/90virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/scripts/90virtualbox.sh -------------------------------------------------------------------------------- /ubuntu-18.04/scripts/99cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/scripts/99cleanup.sh -------------------------------------------------------------------------------- /ubuntu-18.04/scripts/99minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/scripts/99minimize.sh -------------------------------------------------------------------------------- /ubuntu-18.04/ubuntu-18.04-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maier/packer-templates/HEAD/ubuntu-18.04/ubuntu-18.04-x86_64.json --------------------------------------------------------------------------------