├── .gitignore ├── Alpine ├── 3.10 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 3.11 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 3.12 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 3.7 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 3.8 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 3.9 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── alpine-server.json ├── Arch ├── 2018.09.01 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2018.10.01 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2018.11.01 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2018.12.01 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2019.01.01 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2019.02.01 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2019.03.01 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── arch-server.json └── latest │ └── server │ ├── box_info.json │ ├── build.sh │ ├── http │ ├── manifest.json │ ├── packer_cache │ ├── scripts │ ├── template.json │ └── upload_boxes.sh ├── CentOS ├── 5 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 6 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 7 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 8 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── centos-desktop.json └── centos-server.json ├── Debian ├── 7 ├── 8 ├── 9 ├── 10 ├── buster64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── debian-desktop.json ├── debian-server.json ├── jessie64 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── stretch64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── wheezy64 │ └── server │ ├── box_info.json │ ├── build.sh │ ├── http │ ├── manifest.json │ ├── packer_cache │ ├── scripts │ ├── template.json │ └── upload_boxes.sh ├── ESXi ├── 6.7 │ ├── build.sh │ ├── http │ ├── packer-manifest.json │ ├── packer_cache │ ├── scripts │ └── template.json └── esxi-server.json ├── Elementary ├── 5.0 │ └── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 5.1 │ └── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── elementary.json ├── Fedora ├── 21 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 22 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 23 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 24 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 25 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 26 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 27 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 28 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 29 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 30 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 31 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 32 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── fedora-desktop.json └── fedora-server.json ├── FreeNAS ├── 11.2 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── freenas-server.json ├── LICENSE.md ├── LinuxMint ├── 18.3 │ └── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 19.1 │ └── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 19.2 │ └── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 19.3 │ └── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── linuxmint.json ├── NethServer ├── 7 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── nethserver-server.json ├── Oracle-Linux ├── 7 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 8 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── ol-server.json ├── README.md ├── RedHat └── 7 │ ├── http │ └── ks.cfg │ ├── scripts │ ├── base.sh │ ├── cleanup.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ ├── vmware.sh │ └── zerodisk.sh │ └── template.json ├── Scientific-Linux ├── 7 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── sl-server.json ├── Test ├── dummy │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── test.json ├── Ubuntu ├── 12.04 ├── 14.04 ├── 14.10 ├── 15.04 ├── 15.10 ├── 16.04 ├── 16.10 ├── 17.04 ├── 17.10 ├── 18.04 ├── 18.10 ├── 19.04 ├── 19.10 ├── 20.04 ├── artful64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── bionic64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── cosmic64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── dingo64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── eoan64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── focal64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── precise64 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── trusty64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── ubuntu-desktop-live-installer.json ├── ubuntu-desktop.json ├── ubuntu-server-live-installer.json ├── ubuntu-server.json ├── utopic64 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── vivid64 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── wily64 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── xenial64 │ ├── desktop │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── yakkety64 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── zesty64 │ ├── desktop │ ├── box_info.json │ ├── build.sh │ ├── http │ ├── packer_cache │ ├── scripts │ ├── template.json │ └── upload_boxes.sh │ └── server │ ├── box_info.json │ ├── build.sh │ ├── http │ ├── packer_cache │ ├── scripts │ ├── template.json │ └── upload_boxes.sh ├── VyOS ├── 1.1.7 │ ├── README.md │ ├── scripts │ │ ├── common │ │ │ └── sshd.sh │ │ └── vyos │ │ │ ├── cleanup.sh │ │ │ ├── init.sh │ │ │ ├── minimize.sh │ │ │ ├── repo.sh │ │ │ ├── vagrant.sh │ │ │ ├── virtualbox.sh │ │ │ └── vmware.sh │ └── vyos-1.1.7-amd64.json ├── 1.1.8 │ └── networking │ │ ├── README.md │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── old_scripts │ │ ├── common │ │ │ └── sshd.sh │ │ └── vyos │ │ │ ├── cleanup.sh │ │ │ ├── init.sh │ │ │ ├── minimize.sh │ │ │ ├── repo.sh │ │ │ ├── vagrant.sh │ │ │ ├── virtualbox.sh │ │ │ └── vmware.sh │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ ├── upload_boxes.sh │ │ └── vyos-1.1.8-amd64.json └── vyos.json ├── Windows ├── 10 │ └── desktop │ │ ├── answer_files │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2016 │ └── server │ │ ├── answer_files │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2019 │ └── server │ │ ├── answer_files │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2008r2 │ └── server │ │ ├── answer_files │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── 2012r2 │ └── server │ │ ├── answer_files │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh └── windows.json ├── answer_files ├── 10 │ └── Autounattend.xml ├── 2016 │ └── Autounattend.xml ├── 2019 │ └── Autounattend.xml ├── 2008r2 │ └── Autounattend.xml └── 2012r2 │ └── Autounattend.xml ├── http ├── alpine │ ├── 3.10 │ │ └── answers │ ├── 3.11 │ │ └── answers │ ├── 3.12 │ │ └── answers │ ├── 3.7 │ │ └── answers │ ├── 3.8 │ │ └── answers │ └── 3.9 │ │ └── answers ├── arch │ └── bootstrap.sh ├── centos │ ├── ks.5.cfg │ ├── ks.6.cfg │ ├── ks.7.cfg │ └── ks.8.cfg ├── debian │ └── preseed.cfg ├── elementary │ └── preseed.cfg ├── esxi │ └── ks.cfg ├── fedora │ └── ks.cfg ├── linuxmint │ └── preseed.cfg ├── ol │ ├── ks.7.cfg │ └── ks.8.cfg ├── opensuse │ └── autoinst.xml ├── sl │ └── ks.cfg └── ubuntu │ ├── meta-data │ ├── preseed.cfg │ └── user-data ├── openSUSE ├── leap-15.0 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── leap-15.1 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── leap-42.2 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── leap-42.3 │ └── server │ │ ├── box_info.json │ │ ├── build.sh │ │ ├── http │ │ ├── manifest.json │ │ ├── packer_cache │ │ ├── scripts │ │ ├── template.json │ │ └── upload_boxes.sh ├── opensuse-server.json └── tumbleweed │ └── server │ ├── box_info.json │ ├── build.sh │ ├── http │ ├── packer_cache │ ├── scripts │ ├── template.json │ └── upload_boxes.sh ├── packer_cache └── .gitkeep ├── pfSense └── 2.4 │ └── server │ └── manifest.json ├── requirements-dev.in ├── requirements-dev.txt ├── requirements.in ├── requirements.txt ├── scripts ├── base.ps1 ├── base.sh ├── bootstrap.ps1 ├── cleanup.ps1 ├── cleanup.sh ├── desktop.sh ├── freenas.sh ├── nethserver.sh ├── remove_default_apps.ps1 ├── sshd.sh ├── vagrant.ps1 ├── vagrant.sh ├── virtualbox.ps1 ├── virtualbox.sh ├── vmware.ps1 ├── vmware.sh ├── windows_updates.ps1 └── zerodisk.sh ├── upload_boxes.sh └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /Alpine/3.10/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.10/server/box_info.json -------------------------------------------------------------------------------- /Alpine/3.10/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.10/server/build.sh -------------------------------------------------------------------------------- /Alpine/3.10/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Alpine/3.10/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.10/server/manifest.json -------------------------------------------------------------------------------- /Alpine/3.10/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Alpine/3.10/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Alpine/3.10/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.10/server/template.json -------------------------------------------------------------------------------- /Alpine/3.10/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Alpine/3.11/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.11/server/box_info.json -------------------------------------------------------------------------------- /Alpine/3.11/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.11/server/build.sh -------------------------------------------------------------------------------- /Alpine/3.11/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Alpine/3.11/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.11/server/manifest.json -------------------------------------------------------------------------------- /Alpine/3.11/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Alpine/3.11/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Alpine/3.11/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.11/server/template.json -------------------------------------------------------------------------------- /Alpine/3.11/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Alpine/3.12/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.12/server/box_info.json -------------------------------------------------------------------------------- /Alpine/3.12/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.12/server/build.sh -------------------------------------------------------------------------------- /Alpine/3.12/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Alpine/3.12/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.12/server/manifest.json -------------------------------------------------------------------------------- /Alpine/3.12/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Alpine/3.12/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Alpine/3.12/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.12/server/template.json -------------------------------------------------------------------------------- /Alpine/3.12/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Alpine/3.7/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.7/server/box_info.json -------------------------------------------------------------------------------- /Alpine/3.7/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.7/server/build.sh -------------------------------------------------------------------------------- /Alpine/3.7/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Alpine/3.7/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.7/server/manifest.json -------------------------------------------------------------------------------- /Alpine/3.7/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Alpine/3.7/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Alpine/3.7/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.7/server/template.json -------------------------------------------------------------------------------- /Alpine/3.7/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Alpine/3.8/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.8/server/box_info.json -------------------------------------------------------------------------------- /Alpine/3.8/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.8/server/build.sh -------------------------------------------------------------------------------- /Alpine/3.8/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Alpine/3.8/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.8/server/manifest.json -------------------------------------------------------------------------------- /Alpine/3.8/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Alpine/3.8/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Alpine/3.8/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.8/server/template.json -------------------------------------------------------------------------------- /Alpine/3.8/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Alpine/3.9/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.9/server/box_info.json -------------------------------------------------------------------------------- /Alpine/3.9/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.9/server/build.sh -------------------------------------------------------------------------------- /Alpine/3.9/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Alpine/3.9/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.9/server/manifest.json -------------------------------------------------------------------------------- /Alpine/3.9/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Alpine/3.9/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Alpine/3.9/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/3.9/server/template.json -------------------------------------------------------------------------------- /Alpine/3.9/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Alpine/alpine-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Alpine/alpine-server.json -------------------------------------------------------------------------------- /Arch/2018.09.01/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.09.01/server/box_info.json -------------------------------------------------------------------------------- /Arch/2018.09.01/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.09.01/server/build.sh -------------------------------------------------------------------------------- /Arch/2018.09.01/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Arch/2018.09.01/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.09.01/server/manifest.json -------------------------------------------------------------------------------- /Arch/2018.09.01/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Arch/2018.09.01/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Arch/2018.09.01/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.09.01/server/template.json -------------------------------------------------------------------------------- /Arch/2018.09.01/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Arch/2018.10.01/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.10.01/server/box_info.json -------------------------------------------------------------------------------- /Arch/2018.10.01/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.10.01/server/build.sh -------------------------------------------------------------------------------- /Arch/2018.10.01/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Arch/2018.10.01/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.10.01/server/manifest.json -------------------------------------------------------------------------------- /Arch/2018.10.01/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Arch/2018.10.01/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Arch/2018.10.01/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.10.01/server/template.json -------------------------------------------------------------------------------- /Arch/2018.10.01/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Arch/2018.11.01/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.11.01/server/box_info.json -------------------------------------------------------------------------------- /Arch/2018.11.01/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.11.01/server/build.sh -------------------------------------------------------------------------------- /Arch/2018.11.01/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Arch/2018.11.01/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.11.01/server/manifest.json -------------------------------------------------------------------------------- /Arch/2018.11.01/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Arch/2018.11.01/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Arch/2018.11.01/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.11.01/server/template.json -------------------------------------------------------------------------------- /Arch/2018.11.01/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Arch/2018.12.01/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.12.01/server/box_info.json -------------------------------------------------------------------------------- /Arch/2018.12.01/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.12.01/server/build.sh -------------------------------------------------------------------------------- /Arch/2018.12.01/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Arch/2018.12.01/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.12.01/server/manifest.json -------------------------------------------------------------------------------- /Arch/2018.12.01/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Arch/2018.12.01/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Arch/2018.12.01/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2018.12.01/server/template.json -------------------------------------------------------------------------------- /Arch/2018.12.01/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Arch/2019.01.01/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.01.01/server/box_info.json -------------------------------------------------------------------------------- /Arch/2019.01.01/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.01.01/server/build.sh -------------------------------------------------------------------------------- /Arch/2019.01.01/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Arch/2019.01.01/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.01.01/server/manifest.json -------------------------------------------------------------------------------- /Arch/2019.01.01/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Arch/2019.01.01/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Arch/2019.01.01/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.01.01/server/template.json -------------------------------------------------------------------------------- /Arch/2019.01.01/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Arch/2019.02.01/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.02.01/server/box_info.json -------------------------------------------------------------------------------- /Arch/2019.02.01/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.02.01/server/build.sh -------------------------------------------------------------------------------- /Arch/2019.02.01/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Arch/2019.02.01/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.02.01/server/manifest.json -------------------------------------------------------------------------------- /Arch/2019.02.01/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Arch/2019.02.01/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Arch/2019.02.01/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.02.01/server/template.json -------------------------------------------------------------------------------- /Arch/2019.02.01/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Arch/2019.03.01/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.03.01/server/box_info.json -------------------------------------------------------------------------------- /Arch/2019.03.01/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.03.01/server/build.sh -------------------------------------------------------------------------------- /Arch/2019.03.01/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Arch/2019.03.01/server/manifest.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Arch/2019.03.01/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Arch/2019.03.01/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Arch/2019.03.01/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/2019.03.01/server/template.json -------------------------------------------------------------------------------- /Arch/2019.03.01/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Arch/arch-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/arch-server.json -------------------------------------------------------------------------------- /Arch/latest/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/latest/server/box_info.json -------------------------------------------------------------------------------- /Arch/latest/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/latest/server/build.sh -------------------------------------------------------------------------------- /Arch/latest/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Arch/latest/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/latest/server/manifest.json -------------------------------------------------------------------------------- /Arch/latest/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Arch/latest/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Arch/latest/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Arch/latest/server/template.json -------------------------------------------------------------------------------- /Arch/latest/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /CentOS/5/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/5/server/box_info.json -------------------------------------------------------------------------------- /CentOS/5/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/5/server/build.sh -------------------------------------------------------------------------------- /CentOS/5/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /CentOS/5/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/5/server/manifest.json -------------------------------------------------------------------------------- /CentOS/5/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /CentOS/5/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /CentOS/5/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/5/server/template.json -------------------------------------------------------------------------------- /CentOS/5/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /CentOS/6/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/6/server/box_info.json -------------------------------------------------------------------------------- /CentOS/6/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/6/server/build.sh -------------------------------------------------------------------------------- /CentOS/6/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /CentOS/6/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/6/server/manifest.json -------------------------------------------------------------------------------- /CentOS/6/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /CentOS/6/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /CentOS/6/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/6/server/template.json -------------------------------------------------------------------------------- /CentOS/6/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /CentOS/7/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/7/desktop/box_info.json -------------------------------------------------------------------------------- /CentOS/7/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/7/desktop/build.sh -------------------------------------------------------------------------------- /CentOS/7/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /CentOS/7/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/7/desktop/manifest.json -------------------------------------------------------------------------------- /CentOS/7/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /CentOS/7/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /CentOS/7/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/7/desktop/template.json -------------------------------------------------------------------------------- /CentOS/7/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /CentOS/7/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/7/server/box_info.json -------------------------------------------------------------------------------- /CentOS/7/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/7/server/build.sh -------------------------------------------------------------------------------- /CentOS/7/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /CentOS/7/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/7/server/manifest.json -------------------------------------------------------------------------------- /CentOS/7/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /CentOS/7/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /CentOS/7/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/7/server/template.json -------------------------------------------------------------------------------- /CentOS/7/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /CentOS/8/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/8/desktop/box_info.json -------------------------------------------------------------------------------- /CentOS/8/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/8/desktop/build.sh -------------------------------------------------------------------------------- /CentOS/8/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /CentOS/8/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/8/desktop/manifest.json -------------------------------------------------------------------------------- /CentOS/8/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /CentOS/8/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /CentOS/8/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/8/desktop/template.json -------------------------------------------------------------------------------- /CentOS/8/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /CentOS/8/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/8/server/box_info.json -------------------------------------------------------------------------------- /CentOS/8/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/8/server/build.sh -------------------------------------------------------------------------------- /CentOS/8/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /CentOS/8/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/8/server/manifest.json -------------------------------------------------------------------------------- /CentOS/8/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /CentOS/8/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /CentOS/8/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/8/server/template.json -------------------------------------------------------------------------------- /CentOS/8/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /CentOS/centos-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/centos-desktop.json -------------------------------------------------------------------------------- /CentOS/centos-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/CentOS/centos-server.json -------------------------------------------------------------------------------- /Debian/10: -------------------------------------------------------------------------------- 1 | buster64 -------------------------------------------------------------------------------- /Debian/7: -------------------------------------------------------------------------------- 1 | wheezy64 -------------------------------------------------------------------------------- /Debian/8: -------------------------------------------------------------------------------- 1 | jessie64 -------------------------------------------------------------------------------- /Debian/9: -------------------------------------------------------------------------------- 1 | stretch64 -------------------------------------------------------------------------------- /Debian/buster64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/buster64/desktop/box_info.json -------------------------------------------------------------------------------- /Debian/buster64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/buster64/desktop/build.sh -------------------------------------------------------------------------------- /Debian/buster64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Debian/buster64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/buster64/desktop/manifest.json -------------------------------------------------------------------------------- /Debian/buster64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Debian/buster64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Debian/buster64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/buster64/desktop/template.json -------------------------------------------------------------------------------- /Debian/buster64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Debian/buster64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/buster64/server/box_info.json -------------------------------------------------------------------------------- /Debian/buster64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/buster64/server/build.sh -------------------------------------------------------------------------------- /Debian/buster64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Debian/buster64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/buster64/server/manifest.json -------------------------------------------------------------------------------- /Debian/buster64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Debian/buster64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Debian/buster64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/buster64/server/template.json -------------------------------------------------------------------------------- /Debian/buster64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Debian/debian-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/debian-desktop.json -------------------------------------------------------------------------------- /Debian/debian-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/debian-server.json -------------------------------------------------------------------------------- /Debian/jessie64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/jessie64/server/box_info.json -------------------------------------------------------------------------------- /Debian/jessie64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/jessie64/server/build.sh -------------------------------------------------------------------------------- /Debian/jessie64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Debian/jessie64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/jessie64/server/manifest.json -------------------------------------------------------------------------------- /Debian/jessie64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Debian/jessie64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Debian/jessie64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/jessie64/server/template.json -------------------------------------------------------------------------------- /Debian/jessie64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Debian/stretch64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/stretch64/desktop/box_info.json -------------------------------------------------------------------------------- /Debian/stretch64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/stretch64/desktop/build.sh -------------------------------------------------------------------------------- /Debian/stretch64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Debian/stretch64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/stretch64/desktop/manifest.json -------------------------------------------------------------------------------- /Debian/stretch64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Debian/stretch64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Debian/stretch64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/stretch64/desktop/template.json -------------------------------------------------------------------------------- /Debian/stretch64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Debian/stretch64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/stretch64/server/box_info.json -------------------------------------------------------------------------------- /Debian/stretch64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/stretch64/server/build.sh -------------------------------------------------------------------------------- /Debian/stretch64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Debian/stretch64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/stretch64/server/manifest.json -------------------------------------------------------------------------------- /Debian/stretch64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Debian/stretch64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Debian/stretch64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/stretch64/server/template.json -------------------------------------------------------------------------------- /Debian/stretch64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Debian/wheezy64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/wheezy64/server/box_info.json -------------------------------------------------------------------------------- /Debian/wheezy64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/wheezy64/server/build.sh -------------------------------------------------------------------------------- /Debian/wheezy64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Debian/wheezy64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/wheezy64/server/manifest.json -------------------------------------------------------------------------------- /Debian/wheezy64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Debian/wheezy64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Debian/wheezy64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Debian/wheezy64/server/template.json -------------------------------------------------------------------------------- /Debian/wheezy64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /ESXi/6.7/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/ESXi/6.7/build.sh -------------------------------------------------------------------------------- /ESXi/6.7/http: -------------------------------------------------------------------------------- 1 | ../../http -------------------------------------------------------------------------------- /ESXi/6.7/packer-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/ESXi/6.7/packer-manifest.json -------------------------------------------------------------------------------- /ESXi/6.7/packer_cache: -------------------------------------------------------------------------------- 1 | ../../packer_cache -------------------------------------------------------------------------------- /ESXi/6.7/scripts: -------------------------------------------------------------------------------- 1 | ../../scripts -------------------------------------------------------------------------------- /ESXi/6.7/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/ESXi/6.7/template.json -------------------------------------------------------------------------------- /ESXi/esxi-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/ESXi/esxi-server.json -------------------------------------------------------------------------------- /Elementary/5.0/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Elementary/5.0/desktop/box_info.json -------------------------------------------------------------------------------- /Elementary/5.0/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Elementary/5.0/desktop/build.sh -------------------------------------------------------------------------------- /Elementary/5.0/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Elementary/5.0/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Elementary/5.0/desktop/manifest.json -------------------------------------------------------------------------------- /Elementary/5.0/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Elementary/5.0/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Elementary/5.0/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Elementary/5.0/desktop/template.json -------------------------------------------------------------------------------- /Elementary/5.0/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Elementary/5.1/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Elementary/5.1/desktop/box_info.json -------------------------------------------------------------------------------- /Elementary/5.1/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Elementary/5.1/desktop/build.sh -------------------------------------------------------------------------------- /Elementary/5.1/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Elementary/5.1/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Elementary/5.1/desktop/manifest.json -------------------------------------------------------------------------------- /Elementary/5.1/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Elementary/5.1/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Elementary/5.1/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Elementary/5.1/desktop/template.json -------------------------------------------------------------------------------- /Elementary/5.1/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Elementary/elementary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Elementary/elementary.json -------------------------------------------------------------------------------- /Fedora/21/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/21/server/box_info.json -------------------------------------------------------------------------------- /Fedora/21/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/21/server/build.sh -------------------------------------------------------------------------------- /Fedora/21/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/21/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/21/server/manifest.json -------------------------------------------------------------------------------- /Fedora/21/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/21/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/21/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/21/server/template.json -------------------------------------------------------------------------------- /Fedora/21/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/22/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/22/server/box_info.json -------------------------------------------------------------------------------- /Fedora/22/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/22/server/build.sh -------------------------------------------------------------------------------- /Fedora/22/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/22/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/22/server/manifest.json -------------------------------------------------------------------------------- /Fedora/22/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/22/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/22/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/22/server/template.json -------------------------------------------------------------------------------- /Fedora/22/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/23/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/23/server/box_info.json -------------------------------------------------------------------------------- /Fedora/23/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/23/server/build.sh -------------------------------------------------------------------------------- /Fedora/23/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/23/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/23/server/manifest.json -------------------------------------------------------------------------------- /Fedora/23/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/23/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/23/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/23/server/template.json -------------------------------------------------------------------------------- /Fedora/23/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/24/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/24/server/box_info.json -------------------------------------------------------------------------------- /Fedora/24/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/24/server/build.sh -------------------------------------------------------------------------------- /Fedora/24/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/24/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/24/server/manifest.json -------------------------------------------------------------------------------- /Fedora/24/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/24/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/24/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/24/server/template.json -------------------------------------------------------------------------------- /Fedora/24/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/25/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/25/server/box_info.json -------------------------------------------------------------------------------- /Fedora/25/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/25/server/build.sh -------------------------------------------------------------------------------- /Fedora/25/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/25/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/25/server/manifest.json -------------------------------------------------------------------------------- /Fedora/25/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/25/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/25/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/25/server/template.json -------------------------------------------------------------------------------- /Fedora/25/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/26/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/26/server/box_info.json -------------------------------------------------------------------------------- /Fedora/26/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/26/server/build.sh -------------------------------------------------------------------------------- /Fedora/26/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/26/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/26/server/manifest.json -------------------------------------------------------------------------------- /Fedora/26/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/26/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/26/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/26/server/template.json -------------------------------------------------------------------------------- /Fedora/26/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/27/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/27/server/box_info.json -------------------------------------------------------------------------------- /Fedora/27/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/27/server/build.sh -------------------------------------------------------------------------------- /Fedora/27/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/27/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/27/server/manifest.json -------------------------------------------------------------------------------- /Fedora/27/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/27/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/27/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/27/server/template.json -------------------------------------------------------------------------------- /Fedora/27/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/28/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/28/desktop/box_info.json -------------------------------------------------------------------------------- /Fedora/28/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/28/desktop/build.sh -------------------------------------------------------------------------------- /Fedora/28/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/28/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/28/desktop/manifest.json -------------------------------------------------------------------------------- /Fedora/28/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/28/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/28/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/28/desktop/template.json -------------------------------------------------------------------------------- /Fedora/28/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/28/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/28/server/box_info.json -------------------------------------------------------------------------------- /Fedora/28/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/28/server/build.sh -------------------------------------------------------------------------------- /Fedora/28/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/28/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/28/server/manifest.json -------------------------------------------------------------------------------- /Fedora/28/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/28/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/28/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/28/server/template.json -------------------------------------------------------------------------------- /Fedora/28/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/29/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/29/desktop/box_info.json -------------------------------------------------------------------------------- /Fedora/29/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/29/desktop/build.sh -------------------------------------------------------------------------------- /Fedora/29/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/29/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/29/desktop/manifest.json -------------------------------------------------------------------------------- /Fedora/29/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/29/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/29/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/29/desktop/template.json -------------------------------------------------------------------------------- /Fedora/29/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/29/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/29/server/box_info.json -------------------------------------------------------------------------------- /Fedora/29/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/29/server/build.sh -------------------------------------------------------------------------------- /Fedora/29/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/29/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/29/server/manifest.json -------------------------------------------------------------------------------- /Fedora/29/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/29/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/29/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/29/server/template.json -------------------------------------------------------------------------------- /Fedora/29/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/30/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/30/desktop/box_info.json -------------------------------------------------------------------------------- /Fedora/30/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/30/desktop/build.sh -------------------------------------------------------------------------------- /Fedora/30/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/30/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/30/desktop/manifest.json -------------------------------------------------------------------------------- /Fedora/30/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/30/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/30/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/30/desktop/template.json -------------------------------------------------------------------------------- /Fedora/30/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/30/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/30/server/box_info.json -------------------------------------------------------------------------------- /Fedora/30/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/30/server/build.sh -------------------------------------------------------------------------------- /Fedora/30/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/30/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/30/server/manifest.json -------------------------------------------------------------------------------- /Fedora/30/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/30/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/30/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/30/server/template.json -------------------------------------------------------------------------------- /Fedora/30/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/31/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/31/desktop/box_info.json -------------------------------------------------------------------------------- /Fedora/31/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/31/desktop/build.sh -------------------------------------------------------------------------------- /Fedora/31/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/31/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/31/desktop/manifest.json -------------------------------------------------------------------------------- /Fedora/31/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/31/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/31/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/31/desktop/template.json -------------------------------------------------------------------------------- /Fedora/31/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/31/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/31/server/box_info.json -------------------------------------------------------------------------------- /Fedora/31/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/31/server/build.sh -------------------------------------------------------------------------------- /Fedora/31/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/31/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/31/server/manifest.json -------------------------------------------------------------------------------- /Fedora/31/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/31/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/31/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/31/server/template.json -------------------------------------------------------------------------------- /Fedora/31/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/32/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/32/desktop/box_info.json -------------------------------------------------------------------------------- /Fedora/32/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/32/desktop/build.sh -------------------------------------------------------------------------------- /Fedora/32/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/32/desktop/manifest.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Fedora/32/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/32/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/32/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/32/desktop/template.json -------------------------------------------------------------------------------- /Fedora/32/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/32/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/32/server/box_info.json -------------------------------------------------------------------------------- /Fedora/32/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/32/server/build.sh -------------------------------------------------------------------------------- /Fedora/32/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Fedora/32/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/32/server/manifest.json -------------------------------------------------------------------------------- /Fedora/32/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Fedora/32/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Fedora/32/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/32/server/template.json -------------------------------------------------------------------------------- /Fedora/32/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Fedora/fedora-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/fedora-desktop.json -------------------------------------------------------------------------------- /Fedora/fedora-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Fedora/fedora-server.json -------------------------------------------------------------------------------- /FreeNAS/11.2/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/FreeNAS/11.2/server/box_info.json -------------------------------------------------------------------------------- /FreeNAS/11.2/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/FreeNAS/11.2/server/build.sh -------------------------------------------------------------------------------- /FreeNAS/11.2/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /FreeNAS/11.2/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/FreeNAS/11.2/server/manifest.json -------------------------------------------------------------------------------- /FreeNAS/11.2/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /FreeNAS/11.2/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /FreeNAS/11.2/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/FreeNAS/11.2/server/template.json -------------------------------------------------------------------------------- /FreeNAS/11.2/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /FreeNAS/freenas-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/FreeNAS/freenas-server.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LinuxMint/18.3/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/18.3/desktop/box_info.json -------------------------------------------------------------------------------- /LinuxMint/18.3/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/18.3/desktop/build.sh -------------------------------------------------------------------------------- /LinuxMint/18.3/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /LinuxMint/18.3/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/18.3/desktop/manifest.json -------------------------------------------------------------------------------- /LinuxMint/18.3/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /LinuxMint/18.3/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /LinuxMint/18.3/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/18.3/desktop/template.json -------------------------------------------------------------------------------- /LinuxMint/18.3/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /LinuxMint/19.1/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.1/desktop/box_info.json -------------------------------------------------------------------------------- /LinuxMint/19.1/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.1/desktop/build.sh -------------------------------------------------------------------------------- /LinuxMint/19.1/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /LinuxMint/19.1/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.1/desktop/manifest.json -------------------------------------------------------------------------------- /LinuxMint/19.1/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /LinuxMint/19.1/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /LinuxMint/19.1/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.1/desktop/template.json -------------------------------------------------------------------------------- /LinuxMint/19.1/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /LinuxMint/19.2/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.2/desktop/box_info.json -------------------------------------------------------------------------------- /LinuxMint/19.2/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.2/desktop/build.sh -------------------------------------------------------------------------------- /LinuxMint/19.2/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /LinuxMint/19.2/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.2/desktop/manifest.json -------------------------------------------------------------------------------- /LinuxMint/19.2/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /LinuxMint/19.2/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /LinuxMint/19.2/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.2/desktop/template.json -------------------------------------------------------------------------------- /LinuxMint/19.2/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /LinuxMint/19.3/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.3/desktop/box_info.json -------------------------------------------------------------------------------- /LinuxMint/19.3/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.3/desktop/build.sh -------------------------------------------------------------------------------- /LinuxMint/19.3/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /LinuxMint/19.3/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.3/desktop/manifest.json -------------------------------------------------------------------------------- /LinuxMint/19.3/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /LinuxMint/19.3/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /LinuxMint/19.3/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/19.3/desktop/template.json -------------------------------------------------------------------------------- /LinuxMint/19.3/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /LinuxMint/linuxmint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/LinuxMint/linuxmint.json -------------------------------------------------------------------------------- /NethServer/7/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/NethServer/7/server/box_info.json -------------------------------------------------------------------------------- /NethServer/7/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/NethServer/7/server/build.sh -------------------------------------------------------------------------------- /NethServer/7/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /NethServer/7/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/NethServer/7/server/manifest.json -------------------------------------------------------------------------------- /NethServer/7/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /NethServer/7/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /NethServer/7/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/NethServer/7/server/template.json -------------------------------------------------------------------------------- /NethServer/7/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /NethServer/nethserver-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/NethServer/nethserver-server.json -------------------------------------------------------------------------------- /Oracle-Linux/7/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Oracle-Linux/7/server/box_info.json -------------------------------------------------------------------------------- /Oracle-Linux/7/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Oracle-Linux/7/server/build.sh -------------------------------------------------------------------------------- /Oracle-Linux/7/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Oracle-Linux/7/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Oracle-Linux/7/server/manifest.json -------------------------------------------------------------------------------- /Oracle-Linux/7/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Oracle-Linux/7/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Oracle-Linux/7/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Oracle-Linux/7/server/template.json -------------------------------------------------------------------------------- /Oracle-Linux/7/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Oracle-Linux/8/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Oracle-Linux/8/server/box_info.json -------------------------------------------------------------------------------- /Oracle-Linux/8/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Oracle-Linux/8/server/build.sh -------------------------------------------------------------------------------- /Oracle-Linux/8/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Oracle-Linux/8/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Oracle-Linux/8/server/manifest.json -------------------------------------------------------------------------------- /Oracle-Linux/8/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Oracle-Linux/8/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Oracle-Linux/8/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Oracle-Linux/8/server/template.json -------------------------------------------------------------------------------- /Oracle-Linux/8/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Oracle-Linux/ol-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Oracle-Linux/ol-server.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/README.md -------------------------------------------------------------------------------- /RedHat/7/http/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/RedHat/7/http/ks.cfg -------------------------------------------------------------------------------- /RedHat/7/scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/RedHat/7/scripts/base.sh -------------------------------------------------------------------------------- /RedHat/7/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/RedHat/7/scripts/cleanup.sh -------------------------------------------------------------------------------- /RedHat/7/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/RedHat/7/scripts/vagrant.sh -------------------------------------------------------------------------------- /RedHat/7/scripts/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/RedHat/7/scripts/virtualbox.sh -------------------------------------------------------------------------------- /RedHat/7/scripts/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/RedHat/7/scripts/vmware.sh -------------------------------------------------------------------------------- /RedHat/7/scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/RedHat/7/scripts/zerodisk.sh -------------------------------------------------------------------------------- /RedHat/7/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/RedHat/7/template.json -------------------------------------------------------------------------------- /Scientific-Linux/7/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Scientific-Linux/7/server/box_info.json -------------------------------------------------------------------------------- /Scientific-Linux/7/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Scientific-Linux/7/server/build.sh -------------------------------------------------------------------------------- /Scientific-Linux/7/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Scientific-Linux/7/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Scientific-Linux/7/server/manifest.json -------------------------------------------------------------------------------- /Scientific-Linux/7/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Scientific-Linux/7/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Scientific-Linux/7/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Scientific-Linux/7/server/template.json -------------------------------------------------------------------------------- /Scientific-Linux/7/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Scientific-Linux/sl-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Scientific-Linux/sl-server.json -------------------------------------------------------------------------------- /Test/dummy/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Test/dummy/server/box_info.json -------------------------------------------------------------------------------- /Test/dummy/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Test/dummy/server/build.sh -------------------------------------------------------------------------------- /Test/dummy/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Test/dummy/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Test/dummy/server/manifest.json -------------------------------------------------------------------------------- /Test/dummy/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Test/dummy/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Test/dummy/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Test/dummy/server/template.json -------------------------------------------------------------------------------- /Test/dummy/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Test/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Test/test.json -------------------------------------------------------------------------------- /Ubuntu/12.04: -------------------------------------------------------------------------------- 1 | precise64 -------------------------------------------------------------------------------- /Ubuntu/14.04: -------------------------------------------------------------------------------- 1 | trusty64 -------------------------------------------------------------------------------- /Ubuntu/14.10: -------------------------------------------------------------------------------- 1 | utopic64 -------------------------------------------------------------------------------- /Ubuntu/15.04: -------------------------------------------------------------------------------- 1 | vivid64 -------------------------------------------------------------------------------- /Ubuntu/15.10: -------------------------------------------------------------------------------- 1 | wily64 -------------------------------------------------------------------------------- /Ubuntu/16.04: -------------------------------------------------------------------------------- 1 | xenial64 -------------------------------------------------------------------------------- /Ubuntu/16.10: -------------------------------------------------------------------------------- 1 | yakkety64 -------------------------------------------------------------------------------- /Ubuntu/17.04: -------------------------------------------------------------------------------- 1 | zesty64 -------------------------------------------------------------------------------- /Ubuntu/17.10: -------------------------------------------------------------------------------- 1 | artful64 -------------------------------------------------------------------------------- /Ubuntu/18.04: -------------------------------------------------------------------------------- 1 | bionic64 -------------------------------------------------------------------------------- /Ubuntu/18.10: -------------------------------------------------------------------------------- 1 | cosmic64 -------------------------------------------------------------------------------- /Ubuntu/19.04: -------------------------------------------------------------------------------- 1 | dingo64 -------------------------------------------------------------------------------- /Ubuntu/19.10: -------------------------------------------------------------------------------- 1 | eoan64 -------------------------------------------------------------------------------- /Ubuntu/20.04: -------------------------------------------------------------------------------- 1 | focal64 -------------------------------------------------------------------------------- /Ubuntu/artful64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/artful64/desktop/box_info.json -------------------------------------------------------------------------------- /Ubuntu/artful64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/artful64/desktop/build.sh -------------------------------------------------------------------------------- /Ubuntu/artful64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/artful64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/artful64/desktop/manifest.json -------------------------------------------------------------------------------- /Ubuntu/artful64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/artful64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/artful64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/artful64/desktop/template.json -------------------------------------------------------------------------------- /Ubuntu/artful64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/artful64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/artful64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/artful64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/artful64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/artful64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/artful64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/artful64/server/manifest.json -------------------------------------------------------------------------------- /Ubuntu/artful64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/artful64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/artful64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/artful64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/artful64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/bionic64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/bionic64/desktop/box_info.json -------------------------------------------------------------------------------- /Ubuntu/bionic64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/bionic64/desktop/build.sh -------------------------------------------------------------------------------- /Ubuntu/bionic64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/bionic64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/bionic64/desktop/manifest.json -------------------------------------------------------------------------------- /Ubuntu/bionic64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/bionic64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/bionic64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/bionic64/desktop/template.json -------------------------------------------------------------------------------- /Ubuntu/bionic64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/bionic64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/bionic64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/bionic64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/bionic64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/bionic64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/bionic64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/bionic64/server/manifest.json -------------------------------------------------------------------------------- /Ubuntu/bionic64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/bionic64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/bionic64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/bionic64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/bionic64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/cosmic64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/cosmic64/desktop/box_info.json -------------------------------------------------------------------------------- /Ubuntu/cosmic64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/cosmic64/desktop/build.sh -------------------------------------------------------------------------------- /Ubuntu/cosmic64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/cosmic64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/cosmic64/desktop/manifest.json -------------------------------------------------------------------------------- /Ubuntu/cosmic64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/cosmic64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/cosmic64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/cosmic64/desktop/template.json -------------------------------------------------------------------------------- /Ubuntu/cosmic64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/cosmic64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/cosmic64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/cosmic64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/cosmic64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/cosmic64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/cosmic64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/cosmic64/server/manifest.json -------------------------------------------------------------------------------- /Ubuntu/cosmic64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/cosmic64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/cosmic64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/cosmic64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/cosmic64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/dingo64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/dingo64/desktop/box_info.json -------------------------------------------------------------------------------- /Ubuntu/dingo64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/dingo64/desktop/build.sh -------------------------------------------------------------------------------- /Ubuntu/dingo64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/dingo64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/dingo64/desktop/manifest.json -------------------------------------------------------------------------------- /Ubuntu/dingo64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/dingo64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/dingo64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/dingo64/desktop/template.json -------------------------------------------------------------------------------- /Ubuntu/dingo64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/dingo64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/dingo64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/dingo64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/dingo64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/dingo64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/dingo64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/dingo64/server/manifest.json -------------------------------------------------------------------------------- /Ubuntu/dingo64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/dingo64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/dingo64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/dingo64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/dingo64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/eoan64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/eoan64/desktop/box_info.json -------------------------------------------------------------------------------- /Ubuntu/eoan64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/eoan64/desktop/build.sh -------------------------------------------------------------------------------- /Ubuntu/eoan64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/eoan64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/eoan64/desktop/manifest.json -------------------------------------------------------------------------------- /Ubuntu/eoan64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/eoan64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/eoan64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/eoan64/desktop/template.json -------------------------------------------------------------------------------- /Ubuntu/eoan64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/eoan64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/eoan64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/eoan64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/eoan64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/eoan64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/eoan64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/eoan64/server/manifest.json -------------------------------------------------------------------------------- /Ubuntu/eoan64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/eoan64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/eoan64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/eoan64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/eoan64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/focal64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/focal64/desktop/box_info.json -------------------------------------------------------------------------------- /Ubuntu/focal64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/focal64/desktop/build.sh -------------------------------------------------------------------------------- /Ubuntu/focal64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/focal64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/focal64/desktop/manifest.json -------------------------------------------------------------------------------- /Ubuntu/focal64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/focal64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/focal64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/focal64/desktop/template.json -------------------------------------------------------------------------------- /Ubuntu/focal64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/focal64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/focal64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/focal64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/focal64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/focal64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/focal64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/focal64/server/manifest.json -------------------------------------------------------------------------------- /Ubuntu/focal64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/focal64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/focal64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/focal64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/focal64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/precise64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/precise64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/precise64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/precise64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/precise64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/precise64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/precise64/server/manifest.json -------------------------------------------------------------------------------- /Ubuntu/precise64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/precise64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/precise64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/precise64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/precise64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/trusty64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/trusty64/desktop/box_info.json -------------------------------------------------------------------------------- /Ubuntu/trusty64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/trusty64/desktop/build.sh -------------------------------------------------------------------------------- /Ubuntu/trusty64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/trusty64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/trusty64/desktop/manifest.json -------------------------------------------------------------------------------- /Ubuntu/trusty64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/trusty64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/trusty64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/trusty64/desktop/template.json -------------------------------------------------------------------------------- /Ubuntu/trusty64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/trusty64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/trusty64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/trusty64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/trusty64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/trusty64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/trusty64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/trusty64/server/manifest.json -------------------------------------------------------------------------------- /Ubuntu/trusty64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/trusty64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/trusty64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/trusty64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/trusty64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/ubuntu-desktop-live-installer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/ubuntu-desktop-live-installer.json -------------------------------------------------------------------------------- /Ubuntu/ubuntu-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/ubuntu-desktop.json -------------------------------------------------------------------------------- /Ubuntu/ubuntu-server-live-installer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/ubuntu-server-live-installer.json -------------------------------------------------------------------------------- /Ubuntu/ubuntu-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/ubuntu-server.json -------------------------------------------------------------------------------- /Ubuntu/utopic64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/utopic64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/utopic64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/utopic64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/utopic64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/utopic64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/utopic64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/utopic64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/utopic64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/utopic64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/vivid64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/vivid64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/vivid64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/vivid64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/vivid64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/vivid64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/vivid64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/vivid64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/vivid64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/vivid64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/wily64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/wily64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/wily64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/wily64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/wily64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/wily64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/wily64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/wily64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/wily64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/wily64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/xenial64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/xenial64/desktop/box_info.json -------------------------------------------------------------------------------- /Ubuntu/xenial64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/xenial64/desktop/build.sh -------------------------------------------------------------------------------- /Ubuntu/xenial64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/xenial64/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/xenial64/desktop/manifest.json -------------------------------------------------------------------------------- /Ubuntu/xenial64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/xenial64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/xenial64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/xenial64/desktop/template.json -------------------------------------------------------------------------------- /Ubuntu/xenial64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/xenial64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/xenial64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/xenial64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/xenial64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/xenial64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/xenial64/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/xenial64/server/manifest.json -------------------------------------------------------------------------------- /Ubuntu/xenial64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/xenial64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/xenial64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/xenial64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/xenial64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/yakkety64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/yakkety64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/yakkety64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/yakkety64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/yakkety64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/yakkety64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/yakkety64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/yakkety64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/yakkety64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/yakkety64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/zesty64/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/zesty64/desktop/box_info.json -------------------------------------------------------------------------------- /Ubuntu/zesty64/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/zesty64/desktop/build.sh -------------------------------------------------------------------------------- /Ubuntu/zesty64/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/zesty64/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/zesty64/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/zesty64/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/zesty64/desktop/template.json -------------------------------------------------------------------------------- /Ubuntu/zesty64/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Ubuntu/zesty64/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/zesty64/server/box_info.json -------------------------------------------------------------------------------- /Ubuntu/zesty64/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/zesty64/server/build.sh -------------------------------------------------------------------------------- /Ubuntu/zesty64/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Ubuntu/zesty64/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Ubuntu/zesty64/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Ubuntu/zesty64/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Ubuntu/zesty64/server/template.json -------------------------------------------------------------------------------- /Ubuntu/zesty64/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /VyOS/1.1.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/README.md -------------------------------------------------------------------------------- /VyOS/1.1.7/scripts/common/sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/scripts/common/sshd.sh -------------------------------------------------------------------------------- /VyOS/1.1.7/scripts/vyos/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/scripts/vyos/cleanup.sh -------------------------------------------------------------------------------- /VyOS/1.1.7/scripts/vyos/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/scripts/vyos/init.sh -------------------------------------------------------------------------------- /VyOS/1.1.7/scripts/vyos/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/scripts/vyos/minimize.sh -------------------------------------------------------------------------------- /VyOS/1.1.7/scripts/vyos/repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/scripts/vyos/repo.sh -------------------------------------------------------------------------------- /VyOS/1.1.7/scripts/vyos/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/scripts/vyos/vagrant.sh -------------------------------------------------------------------------------- /VyOS/1.1.7/scripts/vyos/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/scripts/vyos/virtualbox.sh -------------------------------------------------------------------------------- /VyOS/1.1.7/scripts/vyos/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/scripts/vyos/vmware.sh -------------------------------------------------------------------------------- /VyOS/1.1.7/vyos-1.1.7-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.7/vyos-1.1.7-amd64.json -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/README.md -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/box_info.json -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/build.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/manifest.json -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/old_scripts/common/sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/old_scripts/common/sshd.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/old_scripts/vyos/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/old_scripts/vyos/cleanup.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/old_scripts/vyos/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/old_scripts/vyos/init.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/old_scripts/vyos/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/old_scripts/vyos/minimize.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/old_scripts/vyos/repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/old_scripts/vyos/repo.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/old_scripts/vyos/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/old_scripts/vyos/vagrant.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/old_scripts/vyos/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/old_scripts/vyos/virtualbox.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/old_scripts/vyos/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/old_scripts/vyos/vmware.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/template.json -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /VyOS/1.1.8/networking/vyos-1.1.8-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/1.1.8/networking/vyos-1.1.8-amd64.json -------------------------------------------------------------------------------- /VyOS/vyos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/VyOS/vyos.json -------------------------------------------------------------------------------- /Windows/10/desktop/answer_files: -------------------------------------------------------------------------------- 1 | ../../../answer_files -------------------------------------------------------------------------------- /Windows/10/desktop/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/10/desktop/box_info.json -------------------------------------------------------------------------------- /Windows/10/desktop/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/10/desktop/build.sh -------------------------------------------------------------------------------- /Windows/10/desktop/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Windows/10/desktop/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/10/desktop/manifest.json -------------------------------------------------------------------------------- /Windows/10/desktop/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Windows/10/desktop/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Windows/10/desktop/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/10/desktop/template.json -------------------------------------------------------------------------------- /Windows/10/desktop/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Windows/2008r2/server/answer_files: -------------------------------------------------------------------------------- 1 | ../../../answer_files -------------------------------------------------------------------------------- /Windows/2008r2/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2008r2/server/box_info.json -------------------------------------------------------------------------------- /Windows/2008r2/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2008r2/server/build.sh -------------------------------------------------------------------------------- /Windows/2008r2/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Windows/2008r2/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Windows/2008r2/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Windows/2008r2/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2008r2/server/template.json -------------------------------------------------------------------------------- /Windows/2008r2/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Windows/2012r2/server/answer_files: -------------------------------------------------------------------------------- 1 | ../../../answer_files -------------------------------------------------------------------------------- /Windows/2012r2/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2012r2/server/box_info.json -------------------------------------------------------------------------------- /Windows/2012r2/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2012r2/server/build.sh -------------------------------------------------------------------------------- /Windows/2012r2/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Windows/2012r2/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2012r2/server/manifest.json -------------------------------------------------------------------------------- /Windows/2012r2/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Windows/2012r2/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Windows/2012r2/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2012r2/server/template.json -------------------------------------------------------------------------------- /Windows/2012r2/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Windows/2016/server/answer_files: -------------------------------------------------------------------------------- 1 | ../../../answer_files -------------------------------------------------------------------------------- /Windows/2016/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2016/server/box_info.json -------------------------------------------------------------------------------- /Windows/2016/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2016/server/build.sh -------------------------------------------------------------------------------- /Windows/2016/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Windows/2016/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2016/server/manifest.json -------------------------------------------------------------------------------- /Windows/2016/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Windows/2016/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Windows/2016/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2016/server/template.json -------------------------------------------------------------------------------- /Windows/2016/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Windows/2019/server/answer_files: -------------------------------------------------------------------------------- 1 | ../../../answer_files -------------------------------------------------------------------------------- /Windows/2019/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2019/server/box_info.json -------------------------------------------------------------------------------- /Windows/2019/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2019/server/build.sh -------------------------------------------------------------------------------- /Windows/2019/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /Windows/2019/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2019/server/manifest.json -------------------------------------------------------------------------------- /Windows/2019/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /Windows/2019/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /Windows/2019/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/2019/server/template.json -------------------------------------------------------------------------------- /Windows/2019/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /Windows/windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/Windows/windows.json -------------------------------------------------------------------------------- /answer_files/10/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/answer_files/10/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/2008r2/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/answer_files/2008r2/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/2012r2/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/answer_files/2012r2/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/2016/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/answer_files/2016/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/2019/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/answer_files/2019/Autounattend.xml -------------------------------------------------------------------------------- /http/alpine/3.10/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/alpine/3.10/answers -------------------------------------------------------------------------------- /http/alpine/3.11/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/alpine/3.11/answers -------------------------------------------------------------------------------- /http/alpine/3.12/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/alpine/3.12/answers -------------------------------------------------------------------------------- /http/alpine/3.7/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/alpine/3.7/answers -------------------------------------------------------------------------------- /http/alpine/3.8/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/alpine/3.8/answers -------------------------------------------------------------------------------- /http/alpine/3.9/answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/alpine/3.9/answers -------------------------------------------------------------------------------- /http/arch/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/arch/bootstrap.sh -------------------------------------------------------------------------------- /http/centos/ks.5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/centos/ks.5.cfg -------------------------------------------------------------------------------- /http/centos/ks.6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/centos/ks.6.cfg -------------------------------------------------------------------------------- /http/centos/ks.7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/centos/ks.7.cfg -------------------------------------------------------------------------------- /http/centos/ks.8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/centos/ks.8.cfg -------------------------------------------------------------------------------- /http/debian/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/debian/preseed.cfg -------------------------------------------------------------------------------- /http/elementary/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/elementary/preseed.cfg -------------------------------------------------------------------------------- /http/esxi/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/esxi/ks.cfg -------------------------------------------------------------------------------- /http/fedora/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/fedora/ks.cfg -------------------------------------------------------------------------------- /http/linuxmint/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/linuxmint/preseed.cfg -------------------------------------------------------------------------------- /http/ol/ks.7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/ol/ks.7.cfg -------------------------------------------------------------------------------- /http/ol/ks.8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/ol/ks.8.cfg -------------------------------------------------------------------------------- /http/opensuse/autoinst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/opensuse/autoinst.xml -------------------------------------------------------------------------------- /http/sl/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/sl/ks.cfg -------------------------------------------------------------------------------- /http/ubuntu/meta-data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /http/ubuntu/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/ubuntu/preseed.cfg -------------------------------------------------------------------------------- /http/ubuntu/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/http/ubuntu/user-data -------------------------------------------------------------------------------- /openSUSE/leap-15.0/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-15.0/server/box_info.json -------------------------------------------------------------------------------- /openSUSE/leap-15.0/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-15.0/server/build.sh -------------------------------------------------------------------------------- /openSUSE/leap-15.0/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /openSUSE/leap-15.0/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-15.0/server/manifest.json -------------------------------------------------------------------------------- /openSUSE/leap-15.0/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /openSUSE/leap-15.0/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /openSUSE/leap-15.0/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-15.0/server/template.json -------------------------------------------------------------------------------- /openSUSE/leap-15.0/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /openSUSE/leap-15.1/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-15.1/server/box_info.json -------------------------------------------------------------------------------- /openSUSE/leap-15.1/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-15.1/server/build.sh -------------------------------------------------------------------------------- /openSUSE/leap-15.1/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /openSUSE/leap-15.1/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-15.1/server/manifest.json -------------------------------------------------------------------------------- /openSUSE/leap-15.1/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /openSUSE/leap-15.1/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /openSUSE/leap-15.1/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-15.1/server/template.json -------------------------------------------------------------------------------- /openSUSE/leap-15.1/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /openSUSE/leap-42.2/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-42.2/server/box_info.json -------------------------------------------------------------------------------- /openSUSE/leap-42.2/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-42.2/server/build.sh -------------------------------------------------------------------------------- /openSUSE/leap-42.2/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /openSUSE/leap-42.2/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-42.2/server/manifest.json -------------------------------------------------------------------------------- /openSUSE/leap-42.2/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /openSUSE/leap-42.2/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /openSUSE/leap-42.2/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-42.2/server/template.json -------------------------------------------------------------------------------- /openSUSE/leap-42.2/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /openSUSE/leap-42.3/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-42.3/server/box_info.json -------------------------------------------------------------------------------- /openSUSE/leap-42.3/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-42.3/server/build.sh -------------------------------------------------------------------------------- /openSUSE/leap-42.3/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /openSUSE/leap-42.3/server/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-42.3/server/manifest.json -------------------------------------------------------------------------------- /openSUSE/leap-42.3/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /openSUSE/leap-42.3/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /openSUSE/leap-42.3/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/leap-42.3/server/template.json -------------------------------------------------------------------------------- /openSUSE/leap-42.3/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /openSUSE/opensuse-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/opensuse-server.json -------------------------------------------------------------------------------- /openSUSE/tumbleweed/server/box_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/tumbleweed/server/box_info.json -------------------------------------------------------------------------------- /openSUSE/tumbleweed/server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/tumbleweed/server/build.sh -------------------------------------------------------------------------------- /openSUSE/tumbleweed/server/http: -------------------------------------------------------------------------------- 1 | ../../../http -------------------------------------------------------------------------------- /openSUSE/tumbleweed/server/packer_cache: -------------------------------------------------------------------------------- 1 | ../../../packer_cache -------------------------------------------------------------------------------- /openSUSE/tumbleweed/server/scripts: -------------------------------------------------------------------------------- 1 | ../../../scripts -------------------------------------------------------------------------------- /openSUSE/tumbleweed/server/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/openSUSE/tumbleweed/server/template.json -------------------------------------------------------------------------------- /openSUSE/tumbleweed/server/upload_boxes.sh: -------------------------------------------------------------------------------- 1 | ../../../upload_boxes.sh -------------------------------------------------------------------------------- /packer_cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfSense/2.4/server/manifest.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /requirements-dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/requirements-dev.in -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/base.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/base.ps1 -------------------------------------------------------------------------------- /scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/base.sh -------------------------------------------------------------------------------- /scripts/bootstrap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/bootstrap.ps1 -------------------------------------------------------------------------------- /scripts/cleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/cleanup.ps1 -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /scripts/desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/desktop.sh -------------------------------------------------------------------------------- /scripts/freenas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/freenas.sh -------------------------------------------------------------------------------- /scripts/nethserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/nethserver.sh -------------------------------------------------------------------------------- /scripts/remove_default_apps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/remove_default_apps.ps1 -------------------------------------------------------------------------------- /scripts/sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/sshd.sh -------------------------------------------------------------------------------- /scripts/vagrant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/vagrant.ps1 -------------------------------------------------------------------------------- /scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/vagrant.sh -------------------------------------------------------------------------------- /scripts/virtualbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/virtualbox.ps1 -------------------------------------------------------------------------------- /scripts/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/virtualbox.sh -------------------------------------------------------------------------------- /scripts/vmware.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/vmware.ps1 -------------------------------------------------------------------------------- /scripts/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/vmware.sh -------------------------------------------------------------------------------- /scripts/windows_updates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/windows_updates.ps1 -------------------------------------------------------------------------------- /scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/scripts/zerodisk.sh -------------------------------------------------------------------------------- /upload_boxes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/upload_boxes.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlesmithjr/packer-templates/HEAD/utils.py --------------------------------------------------------------------------------