├── .clinerules ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .markdownlint.json ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.core.runtime.prefs ├── .shellcheckrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── alpine ├── README.md ├── alpine-3.10 │ ├── README.md │ ├── alpine-3.10-ansible.json │ ├── alpine-3.10-docker.json │ ├── alpine-3.10-dwm.json │ ├── alpine-3.10-minimal.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── vars-alpine-standard-3.10-x86.json │ ├── vars-alpine-standard-3.10-x86_64.json │ ├── vars-alpine-virt-3.10-x86.json │ └── vars-alpine-virt-3.10-x86_64.json ├── alpine-3.11 │ ├── README.md │ ├── alpine-3.11-ansible.json │ ├── alpine-3.11-docker.json │ ├── alpine-3.11-dwm.json │ ├── alpine-3.11-minimal.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── install_hyperv.sh │ ├── vars-alpine-standard-3.11-x86.json │ ├── vars-alpine-standard-3.11-x86_64.json │ ├── vars-alpine-virt-3.11-x86.json │ └── vars-alpine-virt-3.11-x86_64.json ├── alpine-3.12 │ ├── README.md │ ├── alpine-3.12-ansible.json │ ├── alpine-3.12-docker.json │ ├── alpine-3.12-dwm.json │ ├── alpine-3.12-minimal.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── install_hyperv.sh │ ├── vars-alpine-standard-3.12-x86.json │ ├── vars-alpine-standard-3.12-x86_64.json │ ├── vars-alpine-virt-3.12-x86.json │ └── vars-alpine-virt-3.12-x86_64.json ├── alpine-3.13 │ ├── README.md │ ├── alpine-3.13-ansible.json │ ├── alpine-3.13-docker.json │ ├── alpine-3.13-dwm.json │ ├── alpine-3.13-minimal.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── vars-alpine-standard-3.13-x86.json │ ├── vars-alpine-standard-3.13-x86_64.json │ ├── vars-alpine-virt-3.13-x86.json │ └── vars-alpine-virt-3.13-x86_64.json ├── alpine-3.14 │ ├── README.md │ ├── alpine-3.14-ansible.json │ ├── alpine-3.14-docker.json │ ├── alpine-3.14-minimal.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── vars-alpine-standard-3.14-x86.json │ ├── vars-alpine-standard-3.14-x86_64.json │ ├── vars-alpine-virt-3.14-x86.json │ └── vars-alpine-virt-3.14-x86_64.json ├── alpine-3.15 │ ├── README.md │ ├── alpine-3.15-docker.pkr.hcl │ ├── alpine-3.15-dwm.pkr.hcl │ ├── alpine-3.15-minimal.pkr.hcl │ ├── alpine-3.15-xfce.pkr.hcl │ ├── answers.txt │ ├── install.sh.pkrtpl.hcl │ ├── vars-alpine-standard-3.15-aarch64.pkrvars.hcl │ ├── vars-alpine-standard-3.15-x86.pkrvars.hcl │ ├── vars-alpine-standard-3.15-x86_64.pkrvars.hcl │ ├── vars-alpine-virt-3.15-aarch64.pkrvars.hcl │ ├── vars-alpine-virt-3.15-x86.pkrvars.hcl │ └── vars-alpine-virt-3.15-x86_64.pkrvars.hcl ├── alpine-3.16 │ ├── README.md │ ├── alpine-3.16-docker.pkr.hcl │ ├── alpine-3.16-dwm.pkr.hcl │ ├── alpine-3.16-minimal.pkr.hcl │ ├── alpine-3.16-xfce.pkr.hcl │ ├── answers.txt │ ├── install.sh.pkrtpl.hcl │ ├── vars-alpine-standard-3.16-aarch64.pkrvars.hcl │ ├── vars-alpine-standard-3.16-x86.pkrvars.hcl │ ├── vars-alpine-standard-3.16-x86_64.pkrvars.hcl │ ├── vars-alpine-virt-3.16-aarch64.pkrvars.hcl │ ├── vars-alpine-virt-3.16-x86.pkrvars.hcl │ └── vars-alpine-virt-3.16-x86_64.pkrvars.hcl ├── alpine-3.17 │ ├── README.md │ ├── alpine-3.17-docker.pkr.hcl │ ├── alpine-3.17-dwm.pkr.hcl │ ├── alpine-3.17-minimal.pkr.hcl │ ├── alpine-3.17-xfce.pkr.hcl │ ├── answers.txt │ ├── install.sh.pkrtpl.hcl │ ├── vars-alpine-standard-3.17-aarch64.pkrvars.hcl │ ├── vars-alpine-standard-3.17-x86.pkrvars.hcl │ ├── vars-alpine-standard-3.17-x86_64.pkrvars.hcl │ ├── vars-alpine-virt-3.17-aarch64.pkrvars.hcl │ ├── vars-alpine-virt-3.17-x86.pkrvars.hcl │ └── vars-alpine-virt-3.17-x86_64.pkrvars.hcl ├── alpine-3.18 │ ├── README.md │ ├── alpine-3.18-docker.pkr.hcl │ ├── alpine-3.18-dwm.pkr.hcl │ ├── alpine-3.18-minimal.pkr.hcl │ ├── alpine-3.18-xfce.pkr.hcl │ ├── answers.txt │ ├── install.sh.pkrtpl.hcl │ ├── install_hyperv.sh │ ├── vars-alpine-standard-3.18-aarch64.pkrvars.hcl │ ├── vars-alpine-standard-3.18-x86.pkrvars.hcl │ ├── vars-alpine-standard-3.18-x86_64.pkrvars.hcl │ ├── vars-alpine-virt-3.18-aarch64.pkrvars.hcl │ ├── vars-alpine-virt-3.18-x86.pkrvars.hcl │ └── vars-alpine-virt-3.18-x86_64.pkrvars.hcl ├── alpine-3.19 │ ├── README.md │ ├── alpine-3.19-docker.pkr.hcl │ ├── alpine-3.19-dwm.pkr.hcl │ ├── alpine-3.19-minimal.pkr.hcl │ ├── alpine-3.19-xfce.pkr.hcl │ ├── answers.txt │ ├── install.sh.pkrtpl.hcl │ ├── vars-alpine-standard-3.19-aarch64.pkrvars.hcl │ ├── vars-alpine-standard-3.19-x86.pkrvars.hcl │ ├── vars-alpine-standard-3.19-x86_64.pkrvars.hcl │ ├── vars-alpine-virt-3.19-aarch64.pkrvars.hcl │ ├── vars-alpine-virt-3.19-x86.pkrvars.hcl │ └── vars-alpine-virt-3.19-x86_64.pkrvars.hcl ├── alpine-3.2 │ ├── README.md │ ├── alpine-linux-3.2-x86.json │ ├── alpine-linux-3.2-x86_64.json │ └── install.sh ├── alpine-3.20 │ ├── README.md │ ├── alpine-3.20-docker.pkr.hcl │ ├── alpine-3.20-dwm.pkr.hcl │ ├── alpine-3.20-minimal.pkr.hcl │ ├── alpine-3.20-xfce.pkr.hcl │ ├── answers.txt │ ├── install.sh.pkrtpl.hcl │ ├── vars-alpine-standard-3.20-aarch64.pkrvars.hcl │ ├── vars-alpine-standard-3.20-x86.pkrvars.hcl │ ├── vars-alpine-standard-3.20-x86_64.pkrvars.hcl │ ├── vars-alpine-virt-3.20-aarch64.pkrvars.hcl │ ├── vars-alpine-virt-3.20-x86.pkrvars.hcl │ └── vars-alpine-virt-3.20-x86_64.pkrvars.hcl ├── alpine-3.21 │ ├── README.md │ ├── alpine-3.21-docker.pkr.hcl │ ├── alpine-3.21-dwm.pkr.hcl │ ├── alpine-3.21-minimal.pkr.hcl │ ├── alpine-3.21-xfce.pkr.hcl │ ├── answers.txt │ ├── install.sh.pkrtpl.hcl │ ├── vars-alpine-standard-3.21-aarch64.pkrvars.hcl │ ├── vars-alpine-standard-3.21-x86.pkrvars.hcl │ ├── vars-alpine-standard-3.21-x86_64.pkrvars.hcl │ ├── vars-alpine-virt-3.21-aarch64.pkrvars.hcl │ ├── vars-alpine-virt-3.21-x86.pkrvars.hcl │ └── vars-alpine-virt-3.21-x86_64.pkrvars.hcl ├── alpine-3.22 │ ├── README.md │ ├── alpine-3.22-docker.pkr.hcl │ ├── alpine-3.22-dwm.pkr.hcl │ ├── alpine-3.22-minimal.pkr.hcl │ ├── alpine-3.22-xfce.pkr.hcl │ ├── answers.txt │ ├── install.sh.pkrtpl.hcl │ ├── vars-alpine-standard-3.22-aarch64.pkrvars.hcl │ ├── vars-alpine-standard-3.22-x86.pkrvars.hcl │ ├── vars-alpine-standard-3.22-x86_64.pkrvars.hcl │ ├── vars-alpine-virt-3.22-aarch64.pkrvars.hcl │ ├── vars-alpine-virt-3.22-x86.pkrvars.hcl │ └── vars-alpine-virt-3.22-x86_64.pkrvars.hcl ├── alpine-3.3 │ ├── README.md │ ├── alpine-linux-3.3-ansible.json │ ├── alpine-linux-3.3-docker.json │ ├── alpine-linux-3.3-minimal.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── vars-alpine-3.3-x86.json │ └── vars-alpine-3.3-x86_64.json ├── alpine-3.4 │ ├── README.md │ ├── alpine-3.4-ansible.json │ ├── alpine-3.4-docker.json │ ├── alpine-3.4-minimal.json │ ├── alpine-3.4-xorg.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── vars-alpine-3.4-x86.json │ ├── vars-alpine-3.4-x86_64.json │ ├── vars-alpine-virt-3.4-x86.json │ └── vars-alpine-virt-3.4-x86_64.json ├── alpine-3.5 │ ├── README.md │ ├── alpine-3.5-ansible.json │ ├── alpine-3.5-docker.json │ ├── alpine-3.5-minimal.json │ ├── alpine-3.5-xorg.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── vars-alpine-standard-3.5-x86.json │ ├── vars-alpine-standard-3.5-x86_64.json │ ├── vars-alpine-virt-3.5-x86.json │ └── vars-alpine-virt-3.5-x86_64.json ├── alpine-3.6 │ ├── README.md │ ├── alpine-3.6-ansible.json │ ├── alpine-3.6-docker.json │ ├── alpine-3.6-dwm.json │ ├── alpine-3.6-minimal.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── vars-alpine-standard-3.6-x86.json │ ├── vars-alpine-standard-3.6-x86_64.json │ ├── vars-alpine-virt-3.6-x86.json │ └── vars-alpine-virt-3.6-x86_64.json ├── alpine-3.7 │ ├── README.md │ ├── alpine-3.7-ansible.json │ ├── alpine-3.7-docker.json │ ├── alpine-3.7-dwm.json │ ├── alpine-3.7-minimal.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── vars-alpine-standard-3.7-x86.json │ ├── vars-alpine-standard-3.7-x86_64.json │ ├── vars-alpine-virt-3.7-x86.json │ └── vars-alpine-virt-3.7-x86_64.json ├── alpine-3.9 │ ├── README.md │ ├── alpine-3.9-ansible.json │ ├── alpine-3.9-docker.json │ ├── alpine-3.9-dwm.json │ ├── alpine-3.9-minimal.json │ ├── answers.txt │ ├── build_all.bat │ ├── build_all.sh │ ├── install.sh │ ├── vars-alpine-standard-3.9-x86.json │ ├── vars-alpine-standard-3.9-x86_64.json │ ├── vars-alpine-virt-3.9-x86.json │ └── vars-alpine-virt-3.9-x86_64.json ├── provisioners │ ├── ansible+testinfra.sh │ ├── ansible+testinfra_alpine3.12+.sh │ ├── ansible+testinfra_alpine3.5+.sh │ ├── ansible+testinfra_alpine3.9+.sh │ ├── ansible.sh │ ├── cleanup.sh │ ├── disk_cleanup.sh │ ├── docker.sh │ ├── docker_alpine3.13+.sh │ ├── docker_alpine3.8+.sh │ ├── dwm.sh │ ├── dwm_alpine3.12.sh │ ├── dwm_alpine3.14+.sh │ ├── hyperv.sh │ ├── nfs.sh │ ├── slim.sh │ ├── vagrant.sh │ ├── vagrant_alpine3.15+.sh │ ├── virtualbox_alpine3.13+.sh │ ├── virtualbox_alpine3.8+.sh │ ├── vmware.sh │ ├── vmware_alpine3.9+.sh │ ├── xfce.sh │ ├── xorg-vmware.sh │ └── xorg.sh └── vagrantfiles │ ├── Vagrantfile.Alpine │ └── Vagrantfile.Alpine3.15+ ├── archlinux ├── README.md ├── archlinux-minimal.pkr.hcl ├── install-chrooted.sh.pkrtpl.hcl ├── install.sh.pkrtpl.hcl ├── provisioners │ ├── cleanup.sh │ ├── disk_cleanup.sh │ ├── docker.sh │ └── vmware.sh └── vagrantfiles │ └── Vagrantfile.archlinux ├── centos ├── README.md ├── centos-5.11 │ ├── README.md │ ├── centos-5.11-i386-minimal.json │ └── centos-5.11-x86_x64-minimal.json ├── centos-6.5 │ ├── README.md │ ├── centos-6.5-x86_64-ansible.json │ ├── centos-6.5-x86_64-docker.json │ └── centos-6.5-x86_64-minimal.json ├── centos-6.6 │ ├── README.md │ ├── centos-6.6-i386-ansible.json │ ├── centos-6.6-i386-minimal.json │ ├── centos-6.6-x86_64-ansible.json │ ├── centos-6.6-x86_64-docker.json │ └── centos-6.6-x86_64-minimal.json ├── centos-6.7 │ ├── README.md │ ├── centos-6.7-i386-ansible.json │ ├── centos-6.7-i386-minimal.json │ ├── centos-6.7-x86_64-ansible.json │ ├── centos-6.7-x86_64-docker.json │ └── centos-6.7-x86_64-minimal.json ├── centos-6.8 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── centos-6.8-ansible.json │ ├── centos-6.8-docker.json │ ├── centos-6.8-minimal.json │ ├── vars-centos-6.8-i386.json │ └── vars-centos-6.8-x86_64.json ├── centos-6.9 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── centos-6.9-ansible.json │ ├── centos-6.9-docker.json │ ├── centos-6.9-minimal.json │ ├── vars-centos-6.9-i386.json │ └── vars-centos-6.9-x86_64.json ├── centos-7 │ ├── README.md │ ├── centos-7-x86_64-ansible.json │ ├── centos-7-x86_64-docker.json │ ├── centos-7-x86_64-minimal.json │ └── vars-centos-7-x86_64-DVD.json ├── http │ ├── ks-5.11-i386.cfg │ ├── ks-5.11-x86_64.cfg │ └── ks.cfg └── provisioners │ ├── ansible+testinfra.sh │ ├── ansible+testinfra_centos7.8.sh │ ├── ansible-6.8.sh │ ├── ansible.sh │ ├── base-7.sh │ ├── base.sh │ ├── cleanup.sh │ ├── disk_cleanup.sh │ ├── docker-7.sh │ ├── docker-io-centos6.8+.sh │ ├── docker-io-centos6.x.sh │ ├── docker_centos7.8.sh │ ├── epel-5.x-i386.sh │ ├── epel-5.x-x86_64.sh │ ├── epel-6.x.sh │ ├── epel-7-x86_64.sh │ ├── epel-7-x86_64_centos7.8.sh │ ├── fig.sh │ ├── kernel3.sh │ ├── kernel3_stuff.sh │ ├── kernel_stuff-5.11.sh │ ├── kernel_stuff-6.9.sh │ ├── kernel_stuff-6.x.sh │ ├── kernel_stuff-7-x86_64.sh │ ├── nothing.sh │ ├── nsenter.sh │ ├── perl.sh │ ├── python-devel-6.9.sh │ ├── python-devel.sh │ ├── sudo.sh │ ├── testinfra.sh │ ├── vagrant-parameterised.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ ├── virtualbox_dependencies-5.x.sh │ ├── virtualbox_dependencies-6.x.sh │ ├── virtualbox_dependencies-7.sh │ ├── vmtools.sh │ └── vmtools_centos7.8.sh ├── debian ├── README.md ├── debian-10 │ ├── README.md │ ├── debian-10-ansible.pkr.hcl │ ├── debian-10-docker.pkr.hcl │ ├── debian-10-dwm.pkr.hcl │ ├── debian-10-minimal.pkr.hcl │ ├── debian-10-xfce.pkr.hcl │ ├── vars-debian-10-amd64-dvd.pkrvars.hcl │ ├── vars-debian-10-amd64-full.pkrvars.hcl │ ├── vars-debian-10-amd64-netinst.pkrvars.hcl │ ├── vars-debian-10-arm64-dvd.pkrvars.hcl │ ├── vars-debian-10-arm64-full.pkrvars.hcl │ ├── vars-debian-10-arm64-mini.pkrvars.hcl │ └── vars-debian-10-arm64-netinst.pkrvars.hcl ├── debian-11 │ ├── README.md │ ├── debian-11-desktop.pkr.hcl │ ├── debian-11-docker.pkr.hcl │ ├── debian-11-dwm.pkr.hcl │ ├── debian-11-minimal.pkr.hcl │ ├── preseed.cfg.pkrtpl.hcl │ ├── vars-debian-11-amd64-dvd.pkrvars.hcl │ ├── vars-debian-11-amd64-netinst.pkrvars.hcl │ ├── vars-debian-11-arm64-dvd.pkrvars.hcl │ ├── vars-debian-11-arm64-mini.pkrvars.hcl │ ├── vars-debian-11-arm64-netinst.pkrvars.hcl │ ├── vars-debian-11-i386-dvd.pkrvars.hcl │ ├── vars-debian-11-i386-mini.pkrvars.hcl │ └── vars-debian-11-i386-netinst.pkrvars.hcl ├── debian-12 │ ├── README.md │ ├── debian-12-desktop.pkr.hcl │ ├── debian-12-docker.pkr.hcl │ ├── debian-12-dwm.pkr.hcl │ ├── debian-12-minimal.pkr.hcl │ ├── preseed.cfg.pkrtpl.hcl │ ├── vars-debian-12-amd64-dvd.pkrvars.hcl │ ├── vars-debian-12-amd64-netinst.pkrvars.hcl │ ├── vars-debian-12-arm64-dvd.pkrvars.hcl │ ├── vars-debian-12-arm64-mini.pkrvars.hcl │ ├── vars-debian-12-arm64-netinst.pkrvars.hcl │ ├── vars-debian-12-i386-dvd.pkrvars.hcl │ ├── vars-debian-12-i386-mini.pkrvars.hcl │ └── vars-debian-12-i386-netinst.pkrvars.hcl ├── debian-13 │ ├── README.md │ ├── debian-13-desktop.pkr.hcl │ ├── debian-13-docker.pkr.hcl │ ├── debian-13-dwm.pkr.hcl │ ├── debian-13-minimal.pkr.hcl │ ├── preseed.cfg.pkrtpl.hcl │ ├── vars-debian-13-amd64-dvd.pkrvars.hcl │ ├── vars-debian-13-amd64-netinst.pkrvars.hcl │ ├── vars-debian-13-arm64-dvd.pkrvars.hcl │ ├── vars-debian-13-arm64-mini.pkrvars.hcl │ └── vars-debian-13-arm64-netinst.pkrvars.hcl ├── debian-7.10 │ ├── README.md │ ├── debian-7.10.0-amd64-minimal.json │ ├── debian-7.10.0-amd64-xfce.json │ └── vars-debian-7.10-amd64-full.json ├── debian-7.11 │ ├── README.md │ ├── debian-7.11.0-amd64-ansible.json │ ├── debian-7.11.0-amd64-docker.json │ ├── debian-7.11.0-amd64-minimal.json │ ├── debian-7.11.0-amd64-xfce.json │ ├── vars-debian-7.11-amd64-full.json │ └── vars-debian-7.11-amd64-netinst.json ├── debian-7.8 │ ├── README.md │ ├── debian-7.8.0-amd64-docker.json │ └── debian-7.8.0-amd64-minimal.json ├── debian-7.9 │ ├── README.md │ ├── debian-7.9.0-amd64-docker.json │ ├── debian-7.9.0-amd64-minimal.json │ └── debian-7.9.0-amd64-xfce.json ├── debian-8.0 │ ├── README.md │ ├── debian-8.0-amd64-docker.json │ └── debian-8.0-amd64-minimal.json ├── debian-8.10 │ ├── README.md │ ├── debian-8.10-amd64-ansible.json │ ├── debian-8.10-amd64-docker.json │ ├── debian-8.10-amd64-dwm.json │ ├── debian-8.10-amd64-minimal.json │ ├── debian-8.10-amd64-xfce.json │ ├── vars-debian-8.10-amd64-full.json │ └── vars-debian-8.10-amd64-netinst.json ├── debian-8.11 │ ├── README.md │ ├── debian-8.11-amd64-ansible.json │ ├── debian-8.11-amd64-docker.json │ ├── debian-8.11-amd64-dwm.json │ ├── debian-8.11-amd64-minimal.json │ ├── debian-8.11-amd64-xfce.json │ ├── vars-debian-8.11-amd64-full.json │ └── vars-debian-8.11-amd64-netinst.json ├── debian-8.4 │ ├── README.md │ ├── debian-8.4-amd64-docker.json │ ├── debian-8.4-amd64-minimal.json │ └── debian-8.4-amd64-xfce.json ├── debian-8.6 │ ├── README.md │ ├── debian-8.6-amd64-ansible.json │ ├── debian-8.6-amd64-docker.json │ ├── debian-8.6-amd64-minimal.json │ ├── debian-8.6-amd64-xfce.json │ ├── debian-8.6-amd64-xorg.json │ ├── vars-debian-8.6-amd64-full.json │ └── vars-debian-8.6-amd64-netinst.json ├── debian-8.7 │ ├── README.md │ ├── debian-8.7-amd64-ansible.json │ ├── debian-8.7-amd64-docker.json │ ├── debian-8.7-amd64-minimal.json │ ├── debian-8.7-amd64-xfce.json │ ├── debian-8.7-amd64-xorg.json │ ├── vars-debian-8.7-amd64-full.json │ └── vars-debian-8.7-amd64-netinst.json ├── debian-8.8 │ ├── README.md │ ├── debian-8.8-amd64-ansible.json │ ├── debian-8.8-amd64-docker.json │ ├── debian-8.8-amd64-minimal.json │ ├── debian-8.8-amd64-xfce.json │ ├── debian-8.8-amd64-xorg.json │ ├── vars-debian-8.8-amd64-full.json │ └── vars-debian-8.8-amd64-netinst.json ├── debian-8.9 │ ├── README.md │ ├── debian-8.9-amd64-ansible.json │ ├── debian-8.9-amd64-docker.json │ ├── debian-8.9-amd64-dwm.json │ ├── debian-8.9-amd64-minimal.json │ ├── debian-8.9-amd64-xfce.json │ ├── vars-debian-8.9-amd64-full.json │ └── vars-debian-8.9-amd64-netinst.json ├── debian-9 │ ├── README.md │ ├── debian-9-amd64-ansible.json │ ├── debian-9-amd64-docker.json │ ├── debian-9-amd64-dwm.json │ ├── debian-9-amd64-minimal.json │ ├── debian-9-amd64-xfce.json │ ├── vars-debian-9-amd64-full.json │ └── vars-debian-9-amd64-netinst.json ├── http │ ├── preseed-bullseye-parallels.cfg │ ├── preseed-buster-hyperv.cfg │ ├── preseed-buster-qemu.cfg │ ├── preseed-buster.cfg │ ├── preseed-stretch.cfg │ └── preseed.cfg ├── provisioners │ ├── ansible+testinfra.sh │ ├── ansible+testinfra_debian10.4.sh │ ├── base.sh │ ├── base_debian11+.sh │ ├── cleanup.sh │ ├── disk_cleanup.sh │ ├── docker-ce.sh │ ├── docker-ce_debian11.sh │ ├── docker-io-1.12.sh │ ├── docker-io.sh │ ├── dwm.sh │ ├── kernel-3.16.sh │ ├── linux-headers.sh │ ├── parallels.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ ├── vmtools.sh │ ├── xfce4.sh │ ├── xorg.sh │ └── xrdp.sh └── vagrantfiles │ └── Vagrantfile.debian11+ ├── devuan ├── README.md ├── devuan-1.0 │ ├── README.md │ ├── devuan-1.0-amd64-docker.json │ ├── devuan-1.0-amd64-minimal.json │ ├── devuan-1.0-amd64-xfce.json │ ├── devuan-1.0-amd64-xorg.json │ ├── vars-devuan-1.0-amd64-CD.json │ └── vars-devuan-1.0-amd64-DVD.json ├── devuan-2 │ ├── README.md │ ├── devuan-2-amd64-docker.json │ ├── devuan-2-amd64-dwm.json │ ├── devuan-2-amd64-minimal.json │ ├── devuan-2-amd64-xfce.json │ ├── vars-devuan-2-amd64-CD.json │ └── vars-devuan-2-amd64-DVD.json ├── devuan-3 │ ├── README.md │ ├── devuan-3-desktop.pkr.hcl │ ├── devuan-3-dwm.pkr.hcl │ ├── devuan-3-minimal.pkr.hcl │ ├── preseed.cfg.pkrtpl.hcl │ ├── vars-devuan-3-amd64-CD.pkrvars.hcl │ ├── vars-devuan-3-amd64-DVD.pkrvars.hcl │ ├── vars-devuan-3-i386-CD.pkrvars.hcl │ └── vars-devuan-3-i386-DVD.pkrvars.hcl ├── devuan-4 │ ├── README.md │ ├── devuan-4-desktop.pkr.hcl │ ├── devuan-4-dwm.pkr.hcl │ ├── devuan-4-minimal.pkr.hcl │ ├── preseed.cfg.pkrtpl.hcl │ ├── vars-devuan-4-amd64-CD.pkrvars.hcl │ ├── vars-devuan-4-amd64-DVD.pkrvars.hcl │ ├── vars-devuan-4-arm64-CD.pkrvars.hcl │ ├── vars-devuan-4-arm64-DVD.pkrvars.hcl │ ├── vars-devuan-4-i386-CD.pkrvars.hcl │ └── vars-devuan-4-i386-DVD.pkrvars.hcl ├── devuan-5 │ ├── README.md │ ├── devuan-5-desktop.pkr.hcl │ ├── devuan-5-dwm.pkr.hcl │ ├── devuan-5-minimal.pkr.hcl │ ├── preseed.cfg.pkrtpl.hcl │ ├── vars-devuan-5-amd64-CD.pkrvars.hcl │ ├── vars-devuan-5-amd64-DVD.pkrvars.hcl │ ├── vars-devuan-5-i386-CD.pkrvars.hcl │ └── vars-devuan-5-i386-DVD.pkrvars.hcl ├── http │ ├── preseed-qemu.cfg │ └── preseed.cfg └── provisioners │ ├── base.sh │ ├── disk_cleanup.sh │ ├── docker-stage1.sh │ ├── docker-stage2.sh │ ├── docker_devuan2.sh │ ├── finalise.sh │ ├── parallels.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ ├── vmtools.sh │ ├── xorg.sh │ └── xrdp.sh ├── freebsd ├── README.md ├── freebsd-10.1 │ ├── README.md │ ├── freebsd-10.1-release-amd64.json │ ├── freebsd-10.1-release-i386.json │ └── install.sh ├── freebsd-10.3 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-10.3-release-ansible.json │ ├── freebsd-10.3-release-docker.json │ ├── freebsd-10.3-release-minimal.json │ ├── install.sh │ ├── vars-freebsd-10.3-amd64.json │ └── vars-freebsd-10.3-i386.json ├── freebsd-10.4 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-10.4-release-ansible.json │ ├── freebsd-10.4-release-docker.json │ ├── freebsd-10.4-release-dwm.json │ ├── freebsd-10.4-release-minimal.json │ ├── freebsd-10.4-release-xfce.json │ ├── freebsd-10.4-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-10.4-i386.json ├── freebsd-11.0 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-11.0-release-ansible.json │ ├── freebsd-11.0-release-docker.json │ ├── freebsd-11.0-release-dwm.json │ ├── freebsd-11.0-release-minimal.json │ ├── freebsd-11.0-release-xfce.json │ ├── freebsd-11.0-release-xorg.json │ ├── freebsd-11.0-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ ├── vars-freebsd-11-amd64.json │ └── vars-freebsd-11-i386.json ├── freebsd-11.1 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-11.1-release-ansible.json │ ├── freebsd-11.1-release-docker.json │ ├── freebsd-11.1-release-dwm.json │ ├── freebsd-11.1-release-minimal.json │ ├── freebsd-11.1-release-xfce.json │ ├── freebsd-11.1-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-11.1-i386.json ├── freebsd-11.2 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-11.2-release-ansible.json │ ├── freebsd-11.2-release-dwm.json │ ├── freebsd-11.2-release-minimal.json │ ├── freebsd-11.2-release-xfce.json │ ├── freebsd-11.2-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-11.2-i386.json ├── freebsd-11.3 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-11.3-release-ansible.json │ ├── freebsd-11.3-release-dwm.json │ ├── freebsd-11.3-release-minimal.json │ ├── freebsd-11.3-release-xfce.json │ ├── freebsd-11.3-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-11.3-i386.json ├── freebsd-11.4 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-11.4-release-ansible.json │ ├── freebsd-11.4-release-dwm.json │ ├── freebsd-11.4-release-minimal.json │ ├── freebsd-11.4-release-xfce.json │ ├── freebsd-11.4-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-11.4-i386.json ├── freebsd-12.0 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-12.0-release-ansible.json │ ├── freebsd-12.0-release-dwm.json │ ├── freebsd-12.0-release-minimal.json │ ├── freebsd-12.0-release-xfce.json │ ├── freebsd-12.0-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-12.0-i386.json ├── freebsd-12.1 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-12.1-release-ansible.json │ ├── freebsd-12.1-release-dwm.json │ ├── freebsd-12.1-release-minimal.json │ ├── freebsd-12.1-release-xfce.json │ ├── freebsd-12.1-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-12.1-i386.json ├── freebsd-12.2 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-12.2-release-ansible.json │ ├── freebsd-12.2-release-dwm.json │ ├── freebsd-12.2-release-minimal.json │ ├── freebsd-12.2-release-xfce.json │ ├── freebsd-12.2-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-12.2-i386.json ├── freebsd-12.3 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-12.3-release-ansible.json │ ├── freebsd-12.3-release-dwm.json │ ├── freebsd-12.3-release-minimal.json │ ├── freebsd-12.3-release-xfce.json │ ├── freebsd-12.3-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-12.3-i386.json ├── freebsd-12.4 │ ├── README.md │ ├── freebsd-12.4-dwm.pkr.hcl │ ├── freebsd-12.4-minimal.pkr.hcl │ ├── freebsd-12.4-xfce.pkr.hcl │ ├── freebsd-12.4-zfs.pkr.hcl │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-12.4-i386.pkrvars.hcl ├── freebsd-13.0 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-13.0-release-ansible.json │ ├── freebsd-13.0-release-dwm.json │ ├── freebsd-13.0-release-minimal.json │ ├── freebsd-13.0-release-xfce.json │ ├── freebsd-13.0-release-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-13.0-i386.json ├── freebsd-13.1 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── freebsd-13.1-ansible.json │ ├── freebsd-13.1-dwm.json │ ├── freebsd-13.1-minimal.json │ ├── freebsd-13.1-xfce.json │ ├── freebsd-13.1-zfs.json │ ├── install.sh │ ├── install_with_x11.sh │ └── vars-freebsd-13.1-i386.json ├── freebsd-13.2 │ ├── README.md │ ├── freebsd-13.2-dwm.pkr.hcl │ ├── freebsd-13.2-minimal.pkr.hcl │ ├── freebsd-13.2-xfce.pkr.hcl │ ├── freebsd-13.2-zfs.pkr.hcl │ ├── install.sh │ ├── install_with_x11.sh │ ├── vars-freebsd-13.2-aarch64.pkrvars.hcl │ └── vars-freebsd-13.2-i386.pkrvars.hcl ├── freebsd-13.3 │ ├── README.md │ ├── freebsd-13.3-dwm.pkr.hcl │ ├── freebsd-13.3-minimal.pkr.hcl │ ├── freebsd-13.3-xfce.pkr.hcl │ ├── freebsd-13.3-zfs.pkr.hcl │ ├── install.sh.pkrtpl.hcl │ ├── vars-freebsd-13.3-aarch64.pkrvars.hcl │ └── vars-freebsd-13.3-i386.pkrvars.hcl ├── freebsd-13.4 │ ├── README.md │ ├── freebsd-13.4-dwm.pkr.hcl │ ├── freebsd-13.4-minimal.pkr.hcl │ ├── freebsd-13.4-xfce.pkr.hcl │ ├── freebsd-13.4-zfs.pkr.hcl │ ├── install.sh.pkrtpl.hcl │ ├── vars-freebsd-13.4-aarch64.pkrvars.hcl │ └── vars-freebsd-13.4-i386.pkrvars.hcl ├── freebsd-13.5 │ ├── README.md │ ├── freebsd-13.5-dwm.pkr.hcl │ ├── freebsd-13.5-minimal.pkr.hcl │ ├── freebsd-13.5-xfce.pkr.hcl │ ├── freebsd-13.5-zfs.pkr.hcl │ ├── install.sh.pkrtpl.hcl │ ├── vars-freebsd-13.5-aarch64.pkrvars.hcl │ └── vars-freebsd-13.5-i386.pkrvars.hcl ├── freebsd-14.0 │ ├── README.md │ ├── freebsd-14.0-dwm.pkr.hcl │ ├── freebsd-14.0-minimal.pkr.hcl │ ├── freebsd-14.0-xfce.pkr.hcl │ ├── install.sh.pkrtpl.hcl │ ├── vars-freebsd-14.0-aarch64.pkrvars.hcl │ └── vars-freebsd-14.0-i386.pkrvars.hcl ├── freebsd-14.1 │ ├── README.md │ ├── freebsd-14.1-dwm.pkr.hcl │ ├── freebsd-14.1-minimal.pkr.hcl │ ├── freebsd-14.1-xfce.pkr.hcl │ ├── install.sh.pkrtpl.hcl │ ├── vars-freebsd-14.1-aarch64.pkrvars.hcl │ └── vars-freebsd-14.1-i386.pkrvars.hcl ├── freebsd-14.2 │ ├── README.md │ ├── freebsd-14.2-dwm.pkr.hcl │ ├── freebsd-14.2-minimal.pkr.hcl │ ├── freebsd-14.2-xfce.pkr.hcl │ ├── install.sh.pkrtpl.hcl │ ├── vars-freebsd-14.2-aarch64.pkrvars.hcl │ └── vars-freebsd-14.2-i386.pkrvars.hcl ├── freebsd-14.3 │ ├── README.md │ ├── freebsd-14.3-dwm.pkr.hcl │ ├── freebsd-14.3-minimal.pkr.hcl │ ├── freebsd-14.3-xfce.pkr.hcl │ ├── install.sh.pkrtpl.hcl │ ├── vars-freebsd-14.3-aarch64.pkrvars.hcl │ └── vars-freebsd-14.3-i386.pkrvars.hcl ├── freebsd-9.3 │ ├── README.md │ ├── freebsd-9.3-release-amd64.json │ ├── freebsd-9.3-release-i386.json │ └── install.sh ├── provisioners │ ├── ansible+testinfra-11.1+.sh │ ├── ansible+testinfra.sh │ ├── ansible+testinfra_freebsd11.3+.sh │ ├── ansible-10.3.sh │ ├── cleanup.sh │ ├── disk_cleanup.sh │ ├── docker-10.3.sh │ ├── docker-11.sh │ ├── dwm+dmenu+st.sh │ ├── parallels.sh │ ├── qemu.sh │ ├── slim.sh │ ├── vagrant-10.3.sh │ ├── vagrant-10.4.sh │ ├── vagrant-10.sh │ ├── vagrant-11.0.sh │ ├── vagrant-11.1+.sh │ ├── vagrant-9.sh │ ├── virtualbox_ose_additions-10.3.sh │ ├── virtualbox_ose_additions-10.4+.sh │ ├── virtualbox_ose_additions.sh │ ├── vmware-guest.sh │ ├── xfce.sh │ ├── xorg.sh │ └── xrdp.sh └── vagrantfiles │ ├── Vagrantfile.FreeBSD-10 │ ├── Vagrantfile.FreeBSD-10.3 │ ├── Vagrantfile.FreeBSD-11+ │ ├── Vagrantfile.FreeBSD-13.2+ │ └── Vagrantfile.FreeBSD-9 ├── netbsd ├── README.md ├── netbsd-10 │ ├── README.md │ ├── install.sh.pkrtpl.hcl │ ├── netbsd-10-dwm.pkr.hcl │ ├── netbsd-10-minimal.pkr.hcl │ ├── netbsd-10-xfce.pkr.hcl │ ├── netbsd-10-xorg.pkr.hcl │ ├── vars-netbsd-10-aarch64.pkrvars.hcl │ └── vars-netbsd-10-i386.pkrvars.hcl ├── netbsd-5.2.3 │ ├── README.md │ ├── install.sh │ ├── netbsd-5.2.3-ansible.json │ ├── netbsd-5.2.3-minimal.json │ ├── vars-netbsd-5.2.3-amd64.json │ └── vars-netbsd-5.2.3-i386.json ├── netbsd-6.1.5 │ ├── README.md │ ├── install.sh │ ├── netbsd-6.1.5-ansible.json │ ├── netbsd-6.1.5-minimal.json │ ├── vars-netbsd-6.1.5-amd64.json │ └── vars-netbsd-6.1.5-i386.json ├── netbsd-7.0 │ ├── README.md │ ├── install.sh │ ├── netbsd-7.0-ansible.json │ ├── netbsd-7.0-dwm.json │ ├── netbsd-7.0-minimal.json │ ├── netbsd-7.0-xorg.json │ ├── vars-netbsd-7.0-amd64.json │ └── vars-netbsd-7.0-i386.json ├── netbsd-7.1 │ ├── README.md │ ├── install.sh │ ├── netbsd-7.1-ansible.json │ ├── netbsd-7.1-dwm.json │ ├── netbsd-7.1-minimal.json │ ├── netbsd-7.1-xfce.json │ ├── netbsd-7.1-xorg.json │ ├── vars-netbsd-7.1-amd64.json │ └── vars-netbsd-7.1-i386.json ├── netbsd-7.2 │ ├── README.md │ ├── install.sh │ ├── netbsd-7.2-ansible.json │ ├── netbsd-7.2-dwm.json │ ├── netbsd-7.2-minimal.json │ ├── netbsd-7.2-xorg.json │ └── vars-netbsd-7.2-i386.json ├── netbsd-8 │ ├── README.md │ ├── install.sh.pkrtpl.hcl │ ├── netbsd-8-dwm.pkr.hcl │ ├── netbsd-8-minimal.pkr.hcl │ ├── netbsd-8-xfce.pkr.hcl │ ├── netbsd-8-xorg.pkr.hcl │ └── vars-netbsd-8-i386.pkrvars.hcl ├── netbsd-9 │ ├── README.md │ ├── install.sh.pkrtpl.hcl │ ├── netbsd-9-dwm.pkr.hcl │ ├── netbsd-9-minimal.pkr.hcl │ ├── netbsd-9-xfce.pkr.hcl │ ├── netbsd-9-xorg.pkr.hcl │ ├── vars-netbsd-9-aarch64.pkvars.hcl │ └── vars-netbsd-9-i386.pkvars.hcl ├── patches │ └── net-ssh.patch ├── provisioners │ ├── ansible-7.0.sh │ ├── ansible.sh │ ├── ansible_netbsd7.2.sh │ ├── ansible_netbsd8.2+.sh │ ├── ansible_netbsd8.sh │ ├── cleanup-7.0.sh │ ├── cleanup.sh │ ├── disk_cleanup.sh │ ├── dwm+st+dmenu.sh │ ├── dwm+st+dmenu_netbsd8+.sh │ ├── dwm+st+dmenu_netbsd9.3+.sh │ ├── finalise.sh │ ├── python27-7.0.sh │ ├── python27.sh │ ├── rsync.sh │ ├── samba.sh │ ├── sharity-light.sh │ ├── sudo.sh │ ├── vagrant-7.0.sh │ ├── vagrant.sh │ ├── vagrant_netbsd8+.sh │ ├── vmware-5.2.sh │ ├── vmware-6.1.sh │ ├── vmware-7.0.sh │ ├── vmware-xorg.sh │ ├── vmware-xorg_netbsd8+.sh │ ├── xfce.sh │ ├── xfce_netbsd10.1.sh │ ├── xfce_netbsd8.2+.sh │ ├── xfce_netbsd9.3+.sh │ └── xorg.sh └── vagrantfiles │ ├── Vagrantfile.NetBSD │ ├── Vagrantfile.NetBSD-8.3+ │ └── Vagrantfile.NetBSD-sh ├── openbsd ├── README.md ├── http │ └── install.sh ├── openbsd-5.6 │ ├── README.md │ ├── openbsd-5.6-amd64.json │ └── openbsd-5.6-i386.json ├── openbsd-5.7 │ ├── README.md │ ├── openbsd-5.7-amd64.json │ └── openbsd-5.7-i386.json ├── openbsd-5.8 │ ├── README.md │ ├── openbsd-5.8-amd64-sudo.json │ ├── openbsd-5.8-amd64.json │ ├── openbsd-5.8-i386-sudo.json │ └── openbsd-5.8-i386.json ├── openbsd-5.9 │ ├── README.md │ ├── openbsd-5.9-ansible.json │ ├── openbsd-5.9-doas.json │ ├── openbsd-5.9-sudo.json │ ├── openbsd-5.9-x11.json │ ├── openbsd-5.9-xfce.json │ ├── vars-openbsd-5.9-amd64-full.json │ ├── vars-openbsd-5.9-amd64-mini.json │ ├── vars-openbsd-5.9-i386-full.json │ └── vars-openbsd-5.9-i386-mini.json ├── openbsd-6.0 │ ├── README.md │ ├── install-full.conf │ ├── install-mini.conf │ ├── install_with_x11-full.conf │ ├── install_with_x11-mini.conf │ ├── openbsd-6.0-ansible.json │ ├── openbsd-6.0-minimal.json │ ├── openbsd-6.0-x11.json │ ├── openbsd-6.0-xfce.json │ ├── vars-openbsd-6.0-amd64-full.json │ ├── vars-openbsd-6.0-amd64-mini.json │ ├── vars-openbsd-6.0-i386-full.json │ └── vars-openbsd-6.0-i386-mini.json ├── openbsd-6.1 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-6.1-ansible.json │ ├── openbsd-6.1-dwm.json │ ├── openbsd-6.1-minimal.json │ ├── openbsd-6.1-x11.json │ ├── openbsd-6.1-xfce.json │ ├── vars-openbsd-6.1-amd64.json │ └── vars-openbsd-6.1-i386.json ├── openbsd-6.2 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-6.2-ansible.json │ ├── openbsd-6.2-dwm.json │ ├── openbsd-6.2-minimal.json │ ├── openbsd-6.2-x11.json │ ├── openbsd-6.2-xfce.json │ └── vars-openbsd-6.2-i386.json ├── openbsd-6.3 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-6.3-ansible.json │ ├── openbsd-6.3-dwm.json │ ├── openbsd-6.3-minimal.json │ ├── openbsd-6.3-x11.json │ ├── openbsd-6.3-xfce.json │ └── vars-openbsd-6.3-i386.json ├── openbsd-6.4 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-6.4-ansible.json │ ├── openbsd-6.4-dwm.json │ ├── openbsd-6.4-minimal.json │ ├── openbsd-6.4-x11.json │ ├── openbsd-6.4-xfce.json │ └── vars-openbsd-6.4-i386.json ├── openbsd-6.5 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-6.5-ansible.json │ ├── openbsd-6.5-dwm.json │ ├── openbsd-6.5-minimal.json │ ├── openbsd-6.5-x11.json │ ├── openbsd-6.5-xfce.json │ └── vars-openbsd-6.5-i386.json ├── openbsd-6.6 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-6.6-ansible.json │ ├── openbsd-6.6-dwm.json │ ├── openbsd-6.6-minimal.json │ ├── openbsd-6.6-x11.json │ ├── openbsd-6.6-xfce.json │ └── vars-openbsd-6.6-i386.json ├── openbsd-6.7 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-6.7-ansible.json │ ├── openbsd-6.7-dwm.json │ ├── openbsd-6.7-minimal.json │ ├── openbsd-6.7-x11.json │ ├── openbsd-6.7-xfce.json │ └── vars-openbsd-6.7-i386.json ├── openbsd-6.8 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-6.8-ansible.json │ ├── openbsd-6.8-dwm.json │ ├── openbsd-6.8-minimal.json │ ├── openbsd-6.8-x11.json │ ├── openbsd-6.8-xfce.json │ └── vars-openbsd-6.8-i386.json ├── openbsd-6.9 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-6.9-ansible.json │ ├── openbsd-6.9-dwm.json │ ├── openbsd-6.9-minimal.json │ ├── openbsd-6.9-x11.json │ ├── openbsd-6.9-xfce.json │ └── vars-openbsd-6.9-i386.json ├── openbsd-7.0 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-7.0-ansible.json │ ├── openbsd-7.0-dwm.json │ ├── openbsd-7.0-minimal.json │ ├── openbsd-7.0-x11.json │ ├── openbsd-7.0-xfce.json │ └── vars-openbsd-7.0-i386.json ├── openbsd-7.1 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-7.1-ansible.json │ ├── openbsd-7.1-dwm.json │ ├── openbsd-7.1-minimal.json │ ├── openbsd-7.1-x11.json │ ├── openbsd-7.1-xfce.json │ └── vars-openbsd-7.1-i386.json ├── openbsd-7.2 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-7.2-dwm.pkr.hcl │ ├── openbsd-7.2-minimal.pkr.hcl │ ├── openbsd-7.2-x11.pkr.hcl │ ├── openbsd-7.2-xfce.pkr.hcl │ ├── vars-openbsd-7.2-arm64.pkrvars.hcl │ └── vars-openbsd-7.2-i386.pkrvars.hcl ├── openbsd-7.3 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-7.3-dwm.pkr.hcl │ ├── openbsd-7.3-minimal.pkr.hcl │ ├── openbsd-7.3-x11.pkr.hcl │ ├── openbsd-7.3-xfce.pkr.hcl │ └── vars-openbsd-7.3-i386.pkrvars.hcl ├── openbsd-7.4 │ ├── README.md │ ├── install.conf │ ├── install_with_x11.conf │ ├── openbsd-7.4-dwm.pkr.hcl │ ├── openbsd-7.4-minimal.pkr.hcl │ ├── openbsd-7.4-x11.pkr.hcl │ ├── openbsd-7.4-xfce.pkr.hcl │ └── vars-openbsd-7.4-i386.pkrvars.hcl ├── openbsd-7.5 │ ├── README.md │ ├── install.conf.pkrtpl.hcl │ ├── openbsd-7.5-dwm.pkr.hcl │ ├── openbsd-7.5-minimal.pkr.hcl │ ├── openbsd-7.5-x11.pkr.hcl │ ├── openbsd-7.5-xfce.pkr.hcl │ ├── vars-openbsd-7.5-arm64.pkrvars.hcl │ └── vars-openbsd-7.5-i386.pkrvars.hcl ├── openbsd-7.6 │ ├── README.md │ ├── install.conf.pkrtpl.hcl │ ├── openbsd-7.6-dwm.pkr.hcl │ ├── openbsd-7.6-minimal.pkr.hcl │ ├── openbsd-7.6-x11.pkr.hcl │ ├── openbsd-7.6-xfce.pkr.hcl │ ├── vars-openbsd-7.6-arm64.pkrvars.hcl │ └── vars-openbsd-7.6-i386.pkrvars.hcl ├── openbsd-7.7 │ ├── README.md │ ├── install.conf.pkrtpl.hcl │ ├── openbsd-7.7-dwm.pkr.hcl │ ├── openbsd-7.7-minimal.pkr.hcl │ ├── openbsd-7.7-x11.pkr.hcl │ ├── openbsd-7.7-xfce.pkr.hcl │ ├── vars-openbsd-7.7-arm64.pkrvars.hcl │ └── vars-openbsd-7.7-i386.pkrvars.hcl ├── provisioners │ ├── ansible+testinfra_openbsd6.5+.sh │ ├── ansible+testinfra_openbsd7.sh │ ├── ansible.sh │ ├── ansible_openbsd6+.sh │ ├── cleanup.sh │ ├── disk_cleanup.sh │ ├── dwm+dmenu+st.sh │ ├── dwm+dmenu+st_openbsd7.sh │ ├── rsync.sh │ ├── rsync_openbsd5.9.sh │ ├── sharity-light.sh │ ├── sudo_openbsd5.8.sh │ ├── sudo_openbsd5.9.sh │ ├── sudo_openbsd6.sh │ ├── vagrant-doas.sh │ ├── vagrant.sh │ ├── vagrant_openbsd6.2+.sh │ ├── vagrant_openbsd6.sh │ ├── vagrant_openbsd7.sh │ ├── x11.sh │ ├── x11_openbsd6.5+.sh │ ├── xfce.sh │ ├── xfce_openbsd6.sh │ └── xfce_openbsd7.sh └── vagrantfiles │ ├── Vagrantfile.OpenBSD │ ├── Vagrantfile.OpenBSD-7.2 │ ├── Vagrantfile.OpenBSD-7.5+ │ ├── Vagrantfile.OpenBSD-doas │ └── Vagrantfile.OpenBSD-sh ├── opensuse ├── README.md ├── leap-42.3 │ ├── README.md │ ├── autoinst.xml │ ├── autoinst_kde.xml │ ├── autoinst_x11.xml │ ├── opensuse-leap-42.3-ansible.json │ ├── opensuse-leap-42.3-docker.json │ ├── opensuse-leap-42.3-dwm.json │ ├── opensuse-leap-42.3-kde.json │ └── opensuse-leap-42.3-minimal.json └── provisioners │ ├── ansible.sh │ ├── base.sh │ ├── disk_cleanup.sh │ ├── docker.sh │ ├── finalise.sh │ ├── kde.sh │ ├── suckless.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ └── vmware.sh ├── tinycorelinux ├── README.md ├── http │ ├── install.sh.pkrtpl.hcl │ ├── install_x86.sh │ └── install_x86_64.sh ├── provisioners │ ├── ansible-testinfra.sh │ ├── ansible_dependencies.sh │ ├── cleanup.sh │ ├── compiletc.sh │ ├── compiletc_tc16.sh │ ├── disk_cleanup.sh │ ├── kernel_source.sh │ ├── python-pip.sh │ ├── vagrant.sh │ ├── vmware_tc16.sh │ └── x11.sh ├── tinycorelinux-16 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── tc-16-compiletc+x11.pkr.hcl │ ├── tc-16-compiletc.pkr.hcl │ ├── tc-16-kernel.pkr.hcl │ ├── tc-16-minimal.pkr.hcl │ ├── tc-16-x11.pkr.hcl │ ├── vars-core-16.pkrvars.hcl │ ├── vars-corepure64-16.pkrvars.hcl │ ├── vars-tinycore-16.pkrvars.hcl │ └── vars-tinycorepure64-16.pkrvars.hcl ├── tinycorelinux-7 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── tc-7-ansible.json │ ├── tc-7-compiletc+x11.json │ ├── tc-7-compiletc.json │ ├── tc-7-minimal.json │ ├── tc-7-x11.json │ ├── vars-core-7.json │ ├── vars-corepure64-7.json │ ├── vars-tinycore-7.json │ └── vars-tinycorepure64-7.json ├── tinycorelinux-8 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── tc-8-compiletc+x11.json │ ├── tc-8-compiletc.json │ ├── tc-8-minimal.json │ ├── tc-8-x11.json │ ├── vars-core-8.json │ ├── vars-corepure64-8.json │ ├── vars-tinycore-8.json │ └── vars-tinycorepure64-8.json ├── tinycorelinux-9 │ ├── README.md │ ├── build_all.bat │ ├── build_all.sh │ ├── tc-9-compiletc+x11.json │ ├── tc-9-compiletc.json │ ├── tc-9-minimal.json │ ├── tc-9-x11.json │ ├── vars-core-9.json │ ├── vars-corepure64-9.json │ ├── vars-tinycore-9.json │ └── vars-tinycorepure64-9.json └── vagrantfiles │ ├── Vagrantfile.tc │ └── Vagrantfile.tc16 └── ubuntu ├── README.md ├── http ├── lubuntu-desktop.seed ├── ubuntu-desktop.seed ├── ubuntu-server.seed └── xubuntu-desktop.seed ├── provisioners ├── ansible+testinfra.sh ├── ansible+testinfra_ubuntu18.04.sh ├── base.sh ├── base_ubuntu1804+.sh ├── cleanup.sh ├── disk_cleanup.sh ├── dwm.sh ├── hyperv.sh ├── lxde.sh ├── lxqt.sh ├── parallels.sh ├── update_mirror.sh ├── vagrant.sh ├── virtualbox.sh ├── vmware-desktop.sh ├── vmware-server.sh └── xfce.sh ├── ubuntu-12.04 ├── README.md ├── preseed.cfg └── ubuntu-12.04-server-minimal.json ├── ubuntu-14.04 ├── README.md ├── ubuntu-14.04-desktop-minimal.json ├── ubuntu-14.04-server-minimal.json └── xubuntu-14.04-minimal.json ├── ubuntu-14.10 ├── README.md ├── ubuntu-14.10-desktop-minimal.json ├── ubuntu-14.10-server-minimal.json └── xubuntu-14.10-minimal.json ├── ubuntu-15.04 ├── README.md ├── ubuntu-15.04-desktop-minimal.json ├── ubuntu-15.04-server-minimal.json └── xubutu-15.04-minimal.json ├── ubuntu-15.10 ├── README.md ├── ubuntu-15.10-desktop-minimal.json ├── ubuntu-15.10-server-minimal.json └── xubuntu-15.10-minimal.json ├── ubuntu-16.04 ├── README.md ├── lubuntu-16.04-desktop.json ├── ubuntu-16.04-desktop.json ├── ubuntu-16.04-server-ansible.json ├── ubuntu-16.04-server-minimal.json └── xubuntu-16.04-desktop.json ├── ubuntu-16.10 ├── README.md ├── lubuntu-16.10-desktop.json ├── ubuntu-16.10-desktop.json ├── ubuntu-16.10-server-ansible.json ├── ubuntu-16.10-server-minimal.json └── xubuntu-16.10-desktop.json ├── ubuntu-17.04 ├── README.md ├── lubuntu-17.04-desktop.json ├── ubuntu-17.04-desktop.json ├── ubuntu-17.04-server-ansible.json ├── ubuntu-17.04-server-minimal.json └── xubuntu-17.04-desktop.json ├── ubuntu-17.10 ├── README.md ├── ubuntu-17.10-ansible.json ├── ubuntu-17.10-lxde.json ├── ubuntu-17.10-minimal.json └── ubuntu-17.10-xfce.json ├── ubuntu-18.04 ├── README.md ├── http │ ├── lubuntu-desktop.seed │ ├── ubuntu-desktop.seed │ ├── ubuntu-server.seed │ └── xubuntu-desktop.seed ├── ubuntu-18.04-ansible.json ├── ubuntu-18.04-dwm.json ├── ubuntu-18.04-lxde.json ├── ubuntu-18.04-minimal.json └── ubuntu-18.04-xfce.json ├── ubuntu-20.04 ├── README.md ├── http │ ├── meta-data │ └── user-data.tmpl ├── ubuntu-20.04-dwm.pkr.hcl ├── ubuntu-20.04-lxqt.pkr.hcl ├── ubuntu-20.04-minimal.pkr.hcl ├── ubuntu-20.04-xfce.pkr.hcl └── vars-ubuntu-20.04-arm64.pkrvars.hcl ├── ubuntu-22.04 ├── README.md ├── http │ ├── meta-data │ └── user-data.pkrtpl ├── ubuntu-22.04-dwm.pkr.hcl ├── ubuntu-22.04-lxde.pkr.hcl ├── ubuntu-22.04-minimal.pkr.hcl ├── ubuntu-22.04-xfce.pkr.hcl └── vars-ubuntu-22.04-arm64.pkrvars.hcl ├── ubuntu-24.04 ├── README.md ├── http │ ├── meta-data │ └── user-data.pkrtpl ├── ubuntu-24.04-dwm.pkr.hcl ├── ubuntu-24.04-lxde.pkr.hcl ├── ubuntu-24.04-minimal.pkr.hcl ├── ubuntu-24.04-xfce.pkr.hcl └── vars-ubuntu-24.04-arm64.pkrvars.hcl └── vagrantfiles └── Vagrantfile.ubuntu /.clinerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/.clinerules -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- 1 | disable=SC2006 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/README.md -------------------------------------------------------------------------------- /alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.10/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.10/alpine-3.10-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.10/alpine-3.10-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.10/alpine-3.10-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.10/alpine-3.10-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.10/alpine-3.10-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.10/alpine-3.10-dwm.json -------------------------------------------------------------------------------- /alpine/alpine-3.10/alpine-3.10-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.10/alpine-3.10-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.10/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.10/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.10/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.10/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.10/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.10/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.10/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.10/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.11/alpine-3.11-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/alpine-3.11-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.11/alpine-3.11-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/alpine-3.11-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.11/alpine-3.11-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/alpine-3.11-dwm.json -------------------------------------------------------------------------------- /alpine/alpine-3.11/alpine-3.11-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/alpine-3.11-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.11/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.11/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.11/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.11/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.11/install_hyperv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.11/install_hyperv.sh -------------------------------------------------------------------------------- /alpine/alpine-3.12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.12/alpine-3.12-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/alpine-3.12-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.12/alpine-3.12-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/alpine-3.12-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.12/alpine-3.12-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/alpine-3.12-dwm.json -------------------------------------------------------------------------------- /alpine/alpine-3.12/alpine-3.12-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/alpine-3.12-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.12/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.12/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.12/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.12/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.12/install_hyperv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.12/install_hyperv.sh -------------------------------------------------------------------------------- /alpine/alpine-3.13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.13/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.13/alpine-3.13-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.13/alpine-3.13-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.13/alpine-3.13-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.13/alpine-3.13-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.13/alpine-3.13-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.13/alpine-3.13-dwm.json -------------------------------------------------------------------------------- /alpine/alpine-3.13/alpine-3.13-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.13/alpine-3.13-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.13/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.13/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.13/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.13/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.13/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.13/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.13/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.13/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.14/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.14/alpine-3.14-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.14/alpine-3.14-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.14/alpine-3.14-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.14/alpine-3.14-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.14/alpine-3.14-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.14/alpine-3.14-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.14/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.14/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.14/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.14/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.14/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.14/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.14/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.14/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.15/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.15/alpine-3.15-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.15/alpine-3.15-dwm.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.15/alpine-3.15-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.15/alpine-3.15-xfce.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.15/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.15/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.15/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.15/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.16/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.16/alpine-3.16-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.16/alpine-3.16-dwm.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.16/alpine-3.16-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.16/alpine-3.16-xfce.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.16/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.16/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.16/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.16/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.17/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.17/alpine-3.17-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.17/alpine-3.17-dwm.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.17/alpine-3.17-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.17/alpine-3.17-xfce.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.17/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.17/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.17/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.17/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.18/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.18/alpine-3.18-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.18/alpine-3.18-dwm.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.18/alpine-3.18-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.18/alpine-3.18-xfce.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.18/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.18/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.18/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.18/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.18/install_hyperv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.18/install_hyperv.sh -------------------------------------------------------------------------------- /alpine/alpine-3.19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.19/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.19/alpine-3.19-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.19/alpine-3.19-dwm.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.19/alpine-3.19-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.19/alpine-3.19-xfce.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.19/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.19/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.19/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.19/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.2/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.2/alpine-linux-3.2-x86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.2/alpine-linux-3.2-x86.json -------------------------------------------------------------------------------- /alpine/alpine-3.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.2/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.20/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.20/alpine-3.20-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.20/alpine-3.20-dwm.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.20/alpine-3.20-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.20/alpine-3.20-xfce.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.20/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.20/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.20/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.20/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.21/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.21/alpine-3.21-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.21/alpine-3.21-dwm.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.21/alpine-3.21-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.21/alpine-3.21-xfce.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.21/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.21/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.21/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.21/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.22/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.22/alpine-3.22-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.22/alpine-3.22-dwm.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.22/alpine-3.22-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.22/alpine-3.22-xfce.pkr.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.22/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.22/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.22/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.22/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /alpine/alpine-3.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.3/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.3/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.3/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.3/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.3/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.3/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.3/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.3/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.3/vars-alpine-3.3-x86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.3/vars-alpine-3.3-x86.json -------------------------------------------------------------------------------- /alpine/alpine-3.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.4/alpine-3.4-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/alpine-3.4-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.4/alpine-3.4-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/alpine-3.4-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.4/alpine-3.4-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/alpine-3.4-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.4/alpine-3.4-xorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/alpine-3.4-xorg.json -------------------------------------------------------------------------------- /alpine/alpine-3.4/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.4/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.4/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.4/vars-alpine-3.4-x86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.4/vars-alpine-3.4-x86.json -------------------------------------------------------------------------------- /alpine/alpine-3.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.5/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.5/alpine-3.5-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.5/alpine-3.5-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.5/alpine-3.5-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.5/alpine-3.5-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.5/alpine-3.5-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.5/alpine-3.5-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.5/alpine-3.5-xorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.5/alpine-3.5-xorg.json -------------------------------------------------------------------------------- /alpine/alpine-3.5/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.5/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.5/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.5/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.5/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.5/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.5/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.6/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.6/alpine-3.6-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.6/alpine-3.6-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.6/alpine-3.6-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.6/alpine-3.6-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.6/alpine-3.6-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.6/alpine-3.6-dwm.json -------------------------------------------------------------------------------- /alpine/alpine-3.6/alpine-3.6-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.6/alpine-3.6-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.6/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.6/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.6/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.6/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.6/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.6/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.6/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.6/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.7/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.7/alpine-3.7-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.7/alpine-3.7-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.7/alpine-3.7-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.7/alpine-3.7-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.7/alpine-3.7-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.7/alpine-3.7-dwm.json -------------------------------------------------------------------------------- /alpine/alpine-3.7/alpine-3.7-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.7/alpine-3.7-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.7/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.7/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.7/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.7/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.7/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.7/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.7/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.7/install.sh -------------------------------------------------------------------------------- /alpine/alpine-3.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.9/README.md -------------------------------------------------------------------------------- /alpine/alpine-3.9/alpine-3.9-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.9/alpine-3.9-ansible.json -------------------------------------------------------------------------------- /alpine/alpine-3.9/alpine-3.9-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.9/alpine-3.9-docker.json -------------------------------------------------------------------------------- /alpine/alpine-3.9/alpine-3.9-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.9/alpine-3.9-dwm.json -------------------------------------------------------------------------------- /alpine/alpine-3.9/alpine-3.9-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.9/alpine-3.9-minimal.json -------------------------------------------------------------------------------- /alpine/alpine-3.9/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.9/answers.txt -------------------------------------------------------------------------------- /alpine/alpine-3.9/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.9/build_all.bat -------------------------------------------------------------------------------- /alpine/alpine-3.9/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.9/build_all.sh -------------------------------------------------------------------------------- /alpine/alpine-3.9/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/alpine-3.9/install.sh -------------------------------------------------------------------------------- /alpine/provisioners/ansible+testinfra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/ansible+testinfra.sh -------------------------------------------------------------------------------- /alpine/provisioners/ansible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/ansible.sh -------------------------------------------------------------------------------- /alpine/provisioners/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/cleanup.sh -------------------------------------------------------------------------------- /alpine/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /alpine/provisioners/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/docker.sh -------------------------------------------------------------------------------- /alpine/provisioners/docker_alpine3.13+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/docker_alpine3.13+.sh -------------------------------------------------------------------------------- /alpine/provisioners/docker_alpine3.8+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/docker_alpine3.8+.sh -------------------------------------------------------------------------------- /alpine/provisioners/dwm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/dwm.sh -------------------------------------------------------------------------------- /alpine/provisioners/dwm_alpine3.12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/dwm_alpine3.12.sh -------------------------------------------------------------------------------- /alpine/provisioners/dwm_alpine3.14+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/dwm_alpine3.14+.sh -------------------------------------------------------------------------------- /alpine/provisioners/hyperv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/hyperv.sh -------------------------------------------------------------------------------- /alpine/provisioners/nfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/nfs.sh -------------------------------------------------------------------------------- /alpine/provisioners/slim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/slim.sh -------------------------------------------------------------------------------- /alpine/provisioners/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/vagrant.sh -------------------------------------------------------------------------------- /alpine/provisioners/vagrant_alpine3.15+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/vagrant_alpine3.15+.sh -------------------------------------------------------------------------------- /alpine/provisioners/virtualbox_alpine3.8+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/virtualbox_alpine3.8+.sh -------------------------------------------------------------------------------- /alpine/provisioners/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/vmware.sh -------------------------------------------------------------------------------- /alpine/provisioners/vmware_alpine3.9+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/vmware_alpine3.9+.sh -------------------------------------------------------------------------------- /alpine/provisioners/xfce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/xfce.sh -------------------------------------------------------------------------------- /alpine/provisioners/xorg-vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/xorg-vmware.sh -------------------------------------------------------------------------------- /alpine/provisioners/xorg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/provisioners/xorg.sh -------------------------------------------------------------------------------- /alpine/vagrantfiles/Vagrantfile.Alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/vagrantfiles/Vagrantfile.Alpine -------------------------------------------------------------------------------- /alpine/vagrantfiles/Vagrantfile.Alpine3.15+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/alpine/vagrantfiles/Vagrantfile.Alpine3.15+ -------------------------------------------------------------------------------- /archlinux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/archlinux/README.md -------------------------------------------------------------------------------- /archlinux/archlinux-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/archlinux/archlinux-minimal.pkr.hcl -------------------------------------------------------------------------------- /archlinux/install-chrooted.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/archlinux/install-chrooted.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /archlinux/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/archlinux/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /archlinux/provisioners/cleanup.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archlinux/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/archlinux/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /archlinux/provisioners/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/archlinux/provisioners/docker.sh -------------------------------------------------------------------------------- /archlinux/provisioners/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/archlinux/provisioners/vmware.sh -------------------------------------------------------------------------------- /archlinux/vagrantfiles/Vagrantfile.archlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/archlinux/vagrantfiles/Vagrantfile.archlinux -------------------------------------------------------------------------------- /centos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/README.md -------------------------------------------------------------------------------- /centos/centos-5.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-5.11/README.md -------------------------------------------------------------------------------- /centos/centos-6.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.5/README.md -------------------------------------------------------------------------------- /centos/centos-6.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.6/README.md -------------------------------------------------------------------------------- /centos/centos-6.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.7/README.md -------------------------------------------------------------------------------- /centos/centos-6.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.8/README.md -------------------------------------------------------------------------------- /centos/centos-6.8/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.8/build_all.bat -------------------------------------------------------------------------------- /centos/centos-6.8/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.8/build_all.sh -------------------------------------------------------------------------------- /centos/centos-6.8/centos-6.8-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.8/centos-6.8-ansible.json -------------------------------------------------------------------------------- /centos/centos-6.8/centos-6.8-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.8/centos-6.8-docker.json -------------------------------------------------------------------------------- /centos/centos-6.8/centos-6.8-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.8/centos-6.8-minimal.json -------------------------------------------------------------------------------- /centos/centos-6.8/vars-centos-6.8-i386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.8/vars-centos-6.8-i386.json -------------------------------------------------------------------------------- /centos/centos-6.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.9/README.md -------------------------------------------------------------------------------- /centos/centos-6.9/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.9/build_all.bat -------------------------------------------------------------------------------- /centos/centos-6.9/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.9/build_all.sh -------------------------------------------------------------------------------- /centos/centos-6.9/centos-6.9-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.9/centos-6.9-ansible.json -------------------------------------------------------------------------------- /centos/centos-6.9/centos-6.9-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.9/centos-6.9-docker.json -------------------------------------------------------------------------------- /centos/centos-6.9/centos-6.9-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.9/centos-6.9-minimal.json -------------------------------------------------------------------------------- /centos/centos-6.9/vars-centos-6.9-i386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-6.9/vars-centos-6.9-i386.json -------------------------------------------------------------------------------- /centos/centos-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-7/README.md -------------------------------------------------------------------------------- /centos/centos-7/centos-7-x86_64-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-7/centos-7-x86_64-ansible.json -------------------------------------------------------------------------------- /centos/centos-7/centos-7-x86_64-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-7/centos-7-x86_64-docker.json -------------------------------------------------------------------------------- /centos/centos-7/centos-7-x86_64-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/centos-7/centos-7-x86_64-minimal.json -------------------------------------------------------------------------------- /centos/http/ks-5.11-i386.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/http/ks-5.11-i386.cfg -------------------------------------------------------------------------------- /centos/http/ks-5.11-x86_64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/http/ks-5.11-x86_64.cfg -------------------------------------------------------------------------------- /centos/http/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/http/ks.cfg -------------------------------------------------------------------------------- /centos/provisioners/ansible+testinfra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/ansible+testinfra.sh -------------------------------------------------------------------------------- /centos/provisioners/ansible-6.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/ansible-6.8.sh -------------------------------------------------------------------------------- /centos/provisioners/ansible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/ansible.sh -------------------------------------------------------------------------------- /centos/provisioners/base-7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/base-7.sh -------------------------------------------------------------------------------- /centos/provisioners/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/base.sh -------------------------------------------------------------------------------- /centos/provisioners/cleanup.sh: -------------------------------------------------------------------------------- 1 | rm -rf /tmp/* /root/* 2 | -------------------------------------------------------------------------------- /centos/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /centos/provisioners/docker-7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/docker-7.sh -------------------------------------------------------------------------------- /centos/provisioners/docker-io-centos6.8+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/docker-io-centos6.8+.sh -------------------------------------------------------------------------------- /centos/provisioners/docker-io-centos6.x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/docker-io-centos6.x.sh -------------------------------------------------------------------------------- /centos/provisioners/docker_centos7.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/docker_centos7.8.sh -------------------------------------------------------------------------------- /centos/provisioners/epel-5.x-i386.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/epel-5.x-i386.sh -------------------------------------------------------------------------------- /centos/provisioners/epel-5.x-x86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/epel-5.x-x86_64.sh -------------------------------------------------------------------------------- /centos/provisioners/epel-6.x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/epel-6.x.sh -------------------------------------------------------------------------------- /centos/provisioners/epel-7-x86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/epel-7-x86_64.sh -------------------------------------------------------------------------------- /centos/provisioners/fig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/fig.sh -------------------------------------------------------------------------------- /centos/provisioners/kernel3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/kernel3.sh -------------------------------------------------------------------------------- /centos/provisioners/kernel3_stuff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/kernel3_stuff.sh -------------------------------------------------------------------------------- /centos/provisioners/kernel_stuff-5.11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/kernel_stuff-5.11.sh -------------------------------------------------------------------------------- /centos/provisioners/kernel_stuff-6.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/kernel_stuff-6.9.sh -------------------------------------------------------------------------------- /centos/provisioners/kernel_stuff-6.x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/kernel_stuff-6.x.sh -------------------------------------------------------------------------------- /centos/provisioners/kernel_stuff-7-x86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/kernel_stuff-7-x86_64.sh -------------------------------------------------------------------------------- /centos/provisioners/nothing.sh: -------------------------------------------------------------------------------- 1 | yum history > /dev/null 2 | -------------------------------------------------------------------------------- /centos/provisioners/nsenter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/nsenter.sh -------------------------------------------------------------------------------- /centos/provisioners/perl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ex 2 | yum -y install perl-5.16.3-283.el7 3 | -------------------------------------------------------------------------------- /centos/provisioners/python-devel-6.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/python-devel-6.9.sh -------------------------------------------------------------------------------- /centos/provisioners/python-devel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/python-devel.sh -------------------------------------------------------------------------------- /centos/provisioners/sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/sudo.sh -------------------------------------------------------------------------------- /centos/provisioners/testinfra.sh: -------------------------------------------------------------------------------- 1 | pip install testinfra==${TESTINFRA:-1.2.0} 2 | -------------------------------------------------------------------------------- /centos/provisioners/vagrant-parameterised.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/vagrant-parameterised.sh -------------------------------------------------------------------------------- /centos/provisioners/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/vagrant.sh -------------------------------------------------------------------------------- /centos/provisioners/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/virtualbox.sh -------------------------------------------------------------------------------- /centos/provisioners/virtualbox_dependencies-7.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ex 2 | yum -y install ${BZIP2:-bzip2-1.0.6-13.el7} ${KERNEL_DEVEL:-kernel-devel} 3 | -------------------------------------------------------------------------------- /centos/provisioners/vmtools.sh: -------------------------------------------------------------------------------- 1 | yum install -y --enablerepo epel open-vm-tools-${OPEN_VM_TOOLS:-9.10.2-3.el6} 2 | -------------------------------------------------------------------------------- /centos/provisioners/vmtools_centos7.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/centos/provisioners/vmtools_centos7.8.sh -------------------------------------------------------------------------------- /debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/README.md -------------------------------------------------------------------------------- /debian/debian-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-10/README.md -------------------------------------------------------------------------------- /debian/debian-10/debian-10-ansible.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-10/debian-10-ansible.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-10/debian-10-docker.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-10/debian-10-docker.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-10/debian-10-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-10/debian-10-dwm.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-10/debian-10-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-10/debian-10-minimal.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-10/debian-10-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-10/debian-10-xfce.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-11/README.md -------------------------------------------------------------------------------- /debian/debian-11/debian-11-desktop.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-11/debian-11-desktop.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-11/debian-11-docker.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-11/debian-11-docker.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-11/debian-11-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-11/debian-11-dwm.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-11/debian-11-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-11/debian-11-minimal.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-11/preseed.cfg.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-11/preseed.cfg.pkrtpl.hcl -------------------------------------------------------------------------------- /debian/debian-12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-12/README.md -------------------------------------------------------------------------------- /debian/debian-12/debian-12-desktop.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-12/debian-12-desktop.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-12/debian-12-docker.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-12/debian-12-docker.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-12/debian-12-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-12/debian-12-dwm.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-12/debian-12-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-12/debian-12-minimal.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-12/preseed.cfg.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-12/preseed.cfg.pkrtpl.hcl -------------------------------------------------------------------------------- /debian/debian-13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-13/README.md -------------------------------------------------------------------------------- /debian/debian-13/debian-13-desktop.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-13/debian-13-desktop.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-13/debian-13-docker.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-13/debian-13-docker.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-13/debian-13-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-13/debian-13-dwm.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-13/debian-13-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-13/debian-13-minimal.pkr.hcl -------------------------------------------------------------------------------- /debian/debian-13/preseed.cfg.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-13/preseed.cfg.pkrtpl.hcl -------------------------------------------------------------------------------- /debian/debian-7.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-7.10/README.md -------------------------------------------------------------------------------- /debian/debian-7.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-7.11/README.md -------------------------------------------------------------------------------- /debian/debian-7.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-7.8/README.md -------------------------------------------------------------------------------- /debian/debian-7.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-7.9/README.md -------------------------------------------------------------------------------- /debian/debian-8.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.0/README.md -------------------------------------------------------------------------------- /debian/debian-8.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.10/README.md -------------------------------------------------------------------------------- /debian/debian-8.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.11/README.md -------------------------------------------------------------------------------- /debian/debian-8.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.4/README.md -------------------------------------------------------------------------------- /debian/debian-8.4/debian-8.4-amd64-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.4/debian-8.4-amd64-xfce.json -------------------------------------------------------------------------------- /debian/debian-8.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.6/README.md -------------------------------------------------------------------------------- /debian/debian-8.6/debian-8.6-amd64-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.6/debian-8.6-amd64-xfce.json -------------------------------------------------------------------------------- /debian/debian-8.6/debian-8.6-amd64-xorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.6/debian-8.6-amd64-xorg.json -------------------------------------------------------------------------------- /debian/debian-8.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.7/README.md -------------------------------------------------------------------------------- /debian/debian-8.7/debian-8.7-amd64-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.7/debian-8.7-amd64-xfce.json -------------------------------------------------------------------------------- /debian/debian-8.7/debian-8.7-amd64-xorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.7/debian-8.7-amd64-xorg.json -------------------------------------------------------------------------------- /debian/debian-8.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.8/README.md -------------------------------------------------------------------------------- /debian/debian-8.8/debian-8.8-amd64-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.8/debian-8.8-amd64-xfce.json -------------------------------------------------------------------------------- /debian/debian-8.8/debian-8.8-amd64-xorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.8/debian-8.8-amd64-xorg.json -------------------------------------------------------------------------------- /debian/debian-8.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.9/README.md -------------------------------------------------------------------------------- /debian/debian-8.9/debian-8.9-amd64-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.9/debian-8.9-amd64-dwm.json -------------------------------------------------------------------------------- /debian/debian-8.9/debian-8.9-amd64-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-8.9/debian-8.9-amd64-xfce.json -------------------------------------------------------------------------------- /debian/debian-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-9/README.md -------------------------------------------------------------------------------- /debian/debian-9/debian-9-amd64-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-9/debian-9-amd64-ansible.json -------------------------------------------------------------------------------- /debian/debian-9/debian-9-amd64-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-9/debian-9-amd64-docker.json -------------------------------------------------------------------------------- /debian/debian-9/debian-9-amd64-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-9/debian-9-amd64-dwm.json -------------------------------------------------------------------------------- /debian/debian-9/debian-9-amd64-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-9/debian-9-amd64-minimal.json -------------------------------------------------------------------------------- /debian/debian-9/debian-9-amd64-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/debian-9/debian-9-amd64-xfce.json -------------------------------------------------------------------------------- /debian/http/preseed-bullseye-parallels.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/http/preseed-bullseye-parallels.cfg -------------------------------------------------------------------------------- /debian/http/preseed-buster-hyperv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/http/preseed-buster-hyperv.cfg -------------------------------------------------------------------------------- /debian/http/preseed-buster-qemu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/http/preseed-buster-qemu.cfg -------------------------------------------------------------------------------- /debian/http/preseed-buster.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/http/preseed-buster.cfg -------------------------------------------------------------------------------- /debian/http/preseed-stretch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/http/preseed-stretch.cfg -------------------------------------------------------------------------------- /debian/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/http/preseed.cfg -------------------------------------------------------------------------------- /debian/provisioners/ansible+testinfra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/ansible+testinfra.sh -------------------------------------------------------------------------------- /debian/provisioners/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/base.sh -------------------------------------------------------------------------------- /debian/provisioners/base_debian11+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/base_debian11+.sh -------------------------------------------------------------------------------- /debian/provisioners/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/cleanup.sh -------------------------------------------------------------------------------- /debian/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /debian/provisioners/docker-ce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/docker-ce.sh -------------------------------------------------------------------------------- /debian/provisioners/docker-ce_debian11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/docker-ce_debian11.sh -------------------------------------------------------------------------------- /debian/provisioners/docker-io-1.12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/docker-io-1.12.sh -------------------------------------------------------------------------------- /debian/provisioners/docker-io.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/docker-io.sh -------------------------------------------------------------------------------- /debian/provisioners/dwm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/dwm.sh -------------------------------------------------------------------------------- /debian/provisioners/kernel-3.16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/kernel-3.16.sh -------------------------------------------------------------------------------- /debian/provisioners/linux-headers.sh: -------------------------------------------------------------------------------- 1 | apt-get -y install linux-headers-`uname -r` 2 | -------------------------------------------------------------------------------- /debian/provisioners/parallels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/parallels.sh -------------------------------------------------------------------------------- /debian/provisioners/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/vagrant.sh -------------------------------------------------------------------------------- /debian/provisioners/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/virtualbox.sh -------------------------------------------------------------------------------- /debian/provisioners/vmtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/vmtools.sh -------------------------------------------------------------------------------- /debian/provisioners/xfce4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/xfce4.sh -------------------------------------------------------------------------------- /debian/provisioners/xorg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/provisioners/xorg.sh -------------------------------------------------------------------------------- /debian/provisioners/xrdp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ex 2 | apt-get install -y ${XRDP:-xrdp} 3 | -------------------------------------------------------------------------------- /debian/vagrantfiles/Vagrantfile.debian11+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/debian/vagrantfiles/Vagrantfile.debian11+ -------------------------------------------------------------------------------- /devuan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/README.md -------------------------------------------------------------------------------- /devuan/devuan-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-1.0/README.md -------------------------------------------------------------------------------- /devuan/devuan-1.0/devuan-1.0-amd64-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-1.0/devuan-1.0-amd64-xfce.json -------------------------------------------------------------------------------- /devuan/devuan-1.0/devuan-1.0-amd64-xorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-1.0/devuan-1.0-amd64-xorg.json -------------------------------------------------------------------------------- /devuan/devuan-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-2/README.md -------------------------------------------------------------------------------- /devuan/devuan-2/devuan-2-amd64-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-2/devuan-2-amd64-docker.json -------------------------------------------------------------------------------- /devuan/devuan-2/devuan-2-amd64-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-2/devuan-2-amd64-dwm.json -------------------------------------------------------------------------------- /devuan/devuan-2/devuan-2-amd64-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-2/devuan-2-amd64-minimal.json -------------------------------------------------------------------------------- /devuan/devuan-2/devuan-2-amd64-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-2/devuan-2-amd64-xfce.json -------------------------------------------------------------------------------- /devuan/devuan-2/vars-devuan-2-amd64-CD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-2/vars-devuan-2-amd64-CD.json -------------------------------------------------------------------------------- /devuan/devuan-2/vars-devuan-2-amd64-DVD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-2/vars-devuan-2-amd64-DVD.json -------------------------------------------------------------------------------- /devuan/devuan-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-3/README.md -------------------------------------------------------------------------------- /devuan/devuan-3/devuan-3-desktop.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-3/devuan-3-desktop.pkr.hcl -------------------------------------------------------------------------------- /devuan/devuan-3/devuan-3-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-3/devuan-3-dwm.pkr.hcl -------------------------------------------------------------------------------- /devuan/devuan-3/devuan-3-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-3/devuan-3-minimal.pkr.hcl -------------------------------------------------------------------------------- /devuan/devuan-3/preseed.cfg.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-3/preseed.cfg.pkrtpl.hcl -------------------------------------------------------------------------------- /devuan/devuan-3/vars-devuan-3-amd64-CD.pkrvars.hcl: -------------------------------------------------------------------------------- 1 | iso_name = "devuan_beowulf_3.1.1_amd64_netinstall.iso" 2 | -------------------------------------------------------------------------------- /devuan/devuan-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-4/README.md -------------------------------------------------------------------------------- /devuan/devuan-4/devuan-4-desktop.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-4/devuan-4-desktop.pkr.hcl -------------------------------------------------------------------------------- /devuan/devuan-4/devuan-4-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-4/devuan-4-dwm.pkr.hcl -------------------------------------------------------------------------------- /devuan/devuan-4/devuan-4-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-4/devuan-4-minimal.pkr.hcl -------------------------------------------------------------------------------- /devuan/devuan-4/preseed.cfg.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-4/preseed.cfg.pkrtpl.hcl -------------------------------------------------------------------------------- /devuan/devuan-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-5/README.md -------------------------------------------------------------------------------- /devuan/devuan-5/devuan-5-desktop.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-5/devuan-5-desktop.pkr.hcl -------------------------------------------------------------------------------- /devuan/devuan-5/devuan-5-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-5/devuan-5-dwm.pkr.hcl -------------------------------------------------------------------------------- /devuan/devuan-5/devuan-5-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-5/devuan-5-minimal.pkr.hcl -------------------------------------------------------------------------------- /devuan/devuan-5/preseed.cfg.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/devuan-5/preseed.cfg.pkrtpl.hcl -------------------------------------------------------------------------------- /devuan/http/preseed-qemu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/http/preseed-qemu.cfg -------------------------------------------------------------------------------- /devuan/http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/http/preseed.cfg -------------------------------------------------------------------------------- /devuan/provisioners/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/base.sh -------------------------------------------------------------------------------- /devuan/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /devuan/provisioners/docker-stage1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/docker-stage1.sh -------------------------------------------------------------------------------- /devuan/provisioners/docker-stage2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/docker-stage2.sh -------------------------------------------------------------------------------- /devuan/provisioners/docker_devuan2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/docker_devuan2.sh -------------------------------------------------------------------------------- /devuan/provisioners/finalise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/finalise.sh -------------------------------------------------------------------------------- /devuan/provisioners/parallels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/parallels.sh -------------------------------------------------------------------------------- /devuan/provisioners/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/vagrant.sh -------------------------------------------------------------------------------- /devuan/provisioners/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/virtualbox.sh -------------------------------------------------------------------------------- /devuan/provisioners/vmtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/vmtools.sh -------------------------------------------------------------------------------- /devuan/provisioners/xorg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/devuan/provisioners/xorg.sh -------------------------------------------------------------------------------- /devuan/provisioners/xrdp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ex 2 | apt-get install -y ${XRDP:-xrdp} 3 | -------------------------------------------------------------------------------- /freebsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-10.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.1/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-10.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.1/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-10.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.3/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-10.3/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.3/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-10.3/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.3/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-10.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.3/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-10.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.4/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-10.4/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.4/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-10.4/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.4/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-10.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.4/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-10.4/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-10.4/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.0/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-11.0/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.0/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-11.0/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.0/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.0/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.0/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.0/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.1/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-11.1/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.1/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-11.1/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.1/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.1/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.1/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.1/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.2/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-11.2/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.2/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-11.2/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.2/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.2/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.2/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.2/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.3/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-11.3/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.3/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-11.3/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.3/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.3/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.3/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.3/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.4/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-11.4/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.4/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-11.4/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.4/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.4/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-11.4/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-11.4/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.0/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-12.0/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.0/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-12.0/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.0/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.0/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.0/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.0/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.1/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-12.1/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.1/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-12.1/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.1/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.1/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.1/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.1/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.2/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-12.2/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.2/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-12.2/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.2/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.2/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.2/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.2/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.3/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-12.3/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.3/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-12.3/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.3/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.3/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.3/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.3/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.4/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-12.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.4/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-12.4/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-12.4/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-13.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.0/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-13.0/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.0/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-13.0/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.0/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-13.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.0/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-13.0/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.0/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-13.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.1/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-13.1/build_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.1/build_all.bat -------------------------------------------------------------------------------- /freebsd/freebsd-13.1/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.1/build_all.sh -------------------------------------------------------------------------------- /freebsd/freebsd-13.1/freebsd-13.1-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.1/freebsd-13.1-dwm.json -------------------------------------------------------------------------------- /freebsd/freebsd-13.1/freebsd-13.1-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.1/freebsd-13.1-xfce.json -------------------------------------------------------------------------------- /freebsd/freebsd-13.1/freebsd-13.1-zfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.1/freebsd-13.1-zfs.json -------------------------------------------------------------------------------- /freebsd/freebsd-13.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.1/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-13.1/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.1/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-13.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.2/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-13.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.2/install.sh -------------------------------------------------------------------------------- /freebsd/freebsd-13.2/install_with_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.2/install_with_x11.sh -------------------------------------------------------------------------------- /freebsd/freebsd-13.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.3/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-13.3/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.3/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /freebsd/freebsd-13.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.4/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-13.4/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.4/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /freebsd/freebsd-13.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.5/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-13.5/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-13.5/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /freebsd/freebsd-14.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-14.0/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-14.0/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-14.0/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /freebsd/freebsd-14.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-14.1/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-14.1/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-14.1/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /freebsd/freebsd-14.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-14.2/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-14.2/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-14.2/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /freebsd/freebsd-14.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-14.3/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-14.3/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-14.3/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /freebsd/freebsd-9.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-9.3/README.md -------------------------------------------------------------------------------- /freebsd/freebsd-9.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/freebsd-9.3/install.sh -------------------------------------------------------------------------------- /freebsd/provisioners/ansible+testinfra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/ansible+testinfra.sh -------------------------------------------------------------------------------- /freebsd/provisioners/ansible-10.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/ansible-10.3.sh -------------------------------------------------------------------------------- /freebsd/provisioners/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/cleanup.sh -------------------------------------------------------------------------------- /freebsd/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /freebsd/provisioners/docker-10.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/docker-10.3.sh -------------------------------------------------------------------------------- /freebsd/provisioners/docker-11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/docker-11.sh -------------------------------------------------------------------------------- /freebsd/provisioners/dwm+dmenu+st.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/dwm+dmenu+st.sh -------------------------------------------------------------------------------- /freebsd/provisioners/parallels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/parallels.sh -------------------------------------------------------------------------------- /freebsd/provisioners/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/qemu.sh -------------------------------------------------------------------------------- /freebsd/provisioners/slim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/slim.sh -------------------------------------------------------------------------------- /freebsd/provisioners/vagrant-10.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/vagrant-10.3.sh -------------------------------------------------------------------------------- /freebsd/provisioners/vagrant-10.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/vagrant-10.4.sh -------------------------------------------------------------------------------- /freebsd/provisioners/vagrant-10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/vagrant-10.sh -------------------------------------------------------------------------------- /freebsd/provisioners/vagrant-11.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/vagrant-11.0.sh -------------------------------------------------------------------------------- /freebsd/provisioners/vagrant-11.1+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/vagrant-11.1+.sh -------------------------------------------------------------------------------- /freebsd/provisioners/vagrant-9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/vagrant-9.sh -------------------------------------------------------------------------------- /freebsd/provisioners/vmware-guest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/vmware-guest.sh -------------------------------------------------------------------------------- /freebsd/provisioners/xfce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/xfce.sh -------------------------------------------------------------------------------- /freebsd/provisioners/xorg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/xorg.sh -------------------------------------------------------------------------------- /freebsd/provisioners/xrdp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/provisioners/xrdp.sh -------------------------------------------------------------------------------- /freebsd/vagrantfiles/Vagrantfile.FreeBSD-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/vagrantfiles/Vagrantfile.FreeBSD-10 -------------------------------------------------------------------------------- /freebsd/vagrantfiles/Vagrantfile.FreeBSD-11+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/vagrantfiles/Vagrantfile.FreeBSD-11+ -------------------------------------------------------------------------------- /freebsd/vagrantfiles/Vagrantfile.FreeBSD-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/freebsd/vagrantfiles/Vagrantfile.FreeBSD-9 -------------------------------------------------------------------------------- /netbsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/README.md -------------------------------------------------------------------------------- /netbsd/netbsd-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-10/README.md -------------------------------------------------------------------------------- /netbsd/netbsd-10/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-10/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-10/netbsd-10-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-10/netbsd-10-dwm.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-10/netbsd-10-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-10/netbsd-10-minimal.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-10/netbsd-10-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-10/netbsd-10-xfce.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-10/netbsd-10-xorg.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-10/netbsd-10-xorg.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-5.2.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-5.2.3/README.md -------------------------------------------------------------------------------- /netbsd/netbsd-5.2.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-5.2.3/install.sh -------------------------------------------------------------------------------- /netbsd/netbsd-6.1.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-6.1.5/README.md -------------------------------------------------------------------------------- /netbsd/netbsd-6.1.5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-6.1.5/install.sh -------------------------------------------------------------------------------- /netbsd/netbsd-7.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.0/README.md -------------------------------------------------------------------------------- /netbsd/netbsd-7.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.0/install.sh -------------------------------------------------------------------------------- /netbsd/netbsd-7.0/netbsd-7.0-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.0/netbsd-7.0-ansible.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.0/netbsd-7.0-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.0/netbsd-7.0-dwm.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.0/netbsd-7.0-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.0/netbsd-7.0-minimal.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.0/netbsd-7.0-xorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.0/netbsd-7.0-xorg.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.0/vars-netbsd-7.0-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.0/vars-netbsd-7.0-amd64.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.0/vars-netbsd-7.0-i386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.0/vars-netbsd-7.0-i386.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.1/README.md -------------------------------------------------------------------------------- /netbsd/netbsd-7.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.1/install.sh -------------------------------------------------------------------------------- /netbsd/netbsd-7.1/netbsd-7.1-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.1/netbsd-7.1-ansible.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.1/netbsd-7.1-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.1/netbsd-7.1-dwm.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.1/netbsd-7.1-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.1/netbsd-7.1-minimal.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.1/netbsd-7.1-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.1/netbsd-7.1-xfce.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.1/netbsd-7.1-xorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.1/netbsd-7.1-xorg.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.1/vars-netbsd-7.1-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.1/vars-netbsd-7.1-amd64.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.1/vars-netbsd-7.1-i386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.1/vars-netbsd-7.1-i386.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.2/README.md -------------------------------------------------------------------------------- /netbsd/netbsd-7.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.2/install.sh -------------------------------------------------------------------------------- /netbsd/netbsd-7.2/netbsd-7.2-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.2/netbsd-7.2-ansible.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.2/netbsd-7.2-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.2/netbsd-7.2-dwm.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.2/netbsd-7.2-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.2/netbsd-7.2-minimal.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.2/netbsd-7.2-xorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.2/netbsd-7.2-xorg.json -------------------------------------------------------------------------------- /netbsd/netbsd-7.2/vars-netbsd-7.2-i386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-7.2/vars-netbsd-7.2-i386.json -------------------------------------------------------------------------------- /netbsd/netbsd-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-8/README.md -------------------------------------------------------------------------------- /netbsd/netbsd-8/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-8/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-8/netbsd-8-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-8/netbsd-8-dwm.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-8/netbsd-8-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-8/netbsd-8-minimal.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-8/netbsd-8-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-8/netbsd-8-xfce.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-8/netbsd-8-xorg.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-8/netbsd-8-xorg.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-9/README.md -------------------------------------------------------------------------------- /netbsd/netbsd-9/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-9/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-9/netbsd-9-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-9/netbsd-9-dwm.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-9/netbsd-9-minimal.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-9/netbsd-9-minimal.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-9/netbsd-9-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-9/netbsd-9-xfce.pkr.hcl -------------------------------------------------------------------------------- /netbsd/netbsd-9/netbsd-9-xorg.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/netbsd-9/netbsd-9-xorg.pkr.hcl -------------------------------------------------------------------------------- /netbsd/patches/net-ssh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/patches/net-ssh.patch -------------------------------------------------------------------------------- /netbsd/provisioners/ansible-7.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/ansible-7.0.sh -------------------------------------------------------------------------------- /netbsd/provisioners/ansible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/ansible.sh -------------------------------------------------------------------------------- /netbsd/provisioners/ansible_netbsd7.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/ansible_netbsd7.2.sh -------------------------------------------------------------------------------- /netbsd/provisioners/ansible_netbsd8.2+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/ansible_netbsd8.2+.sh -------------------------------------------------------------------------------- /netbsd/provisioners/ansible_netbsd8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/ansible_netbsd8.sh -------------------------------------------------------------------------------- /netbsd/provisioners/cleanup-7.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/cleanup-7.0.sh -------------------------------------------------------------------------------- /netbsd/provisioners/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/cleanup.sh -------------------------------------------------------------------------------- /netbsd/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /netbsd/provisioners/dwm+st+dmenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/dwm+st+dmenu.sh -------------------------------------------------------------------------------- /netbsd/provisioners/dwm+st+dmenu_netbsd8+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/dwm+st+dmenu_netbsd8+.sh -------------------------------------------------------------------------------- /netbsd/provisioners/finalise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/finalise.sh -------------------------------------------------------------------------------- /netbsd/provisioners/python27-7.0.sh: -------------------------------------------------------------------------------- 1 | pkg_add libffi-3.2.1 python27-2.7.11 2 | -------------------------------------------------------------------------------- /netbsd/provisioners/python27.sh: -------------------------------------------------------------------------------- 1 | pkg_add libffi-3.2.1 python27-2.7.9nb1 2 | -------------------------------------------------------------------------------- /netbsd/provisioners/rsync.sh: -------------------------------------------------------------------------------- 1 | pkg_add rsync-3.1.1 2 | -------------------------------------------------------------------------------- /netbsd/provisioners/samba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/samba.sh -------------------------------------------------------------------------------- /netbsd/provisioners/sharity-light.sh: -------------------------------------------------------------------------------- 1 | pkg_add sharity-light-1.2nb1 2 | -------------------------------------------------------------------------------- /netbsd/provisioners/sudo.sh: -------------------------------------------------------------------------------- 1 | pkg_add sudo-1.7.10p9 2 | -------------------------------------------------------------------------------- /netbsd/provisioners/vagrant-7.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/vagrant-7.0.sh -------------------------------------------------------------------------------- /netbsd/provisioners/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/vagrant.sh -------------------------------------------------------------------------------- /netbsd/provisioners/vagrant_netbsd8+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/vagrant_netbsd8+.sh -------------------------------------------------------------------------------- /netbsd/provisioners/vmware-5.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/vmware-5.2.sh -------------------------------------------------------------------------------- /netbsd/provisioners/vmware-6.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/vmware-6.1.sh -------------------------------------------------------------------------------- /netbsd/provisioners/vmware-7.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/vmware-7.0.sh -------------------------------------------------------------------------------- /netbsd/provisioners/vmware-xorg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/vmware-xorg.sh -------------------------------------------------------------------------------- /netbsd/provisioners/vmware-xorg_netbsd8+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/vmware-xorg_netbsd8+.sh -------------------------------------------------------------------------------- /netbsd/provisioners/xfce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/xfce.sh -------------------------------------------------------------------------------- /netbsd/provisioners/xfce_netbsd10.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/xfce_netbsd10.1.sh -------------------------------------------------------------------------------- /netbsd/provisioners/xfce_netbsd8.2+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/xfce_netbsd8.2+.sh -------------------------------------------------------------------------------- /netbsd/provisioners/xfce_netbsd9.3+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/xfce_netbsd9.3+.sh -------------------------------------------------------------------------------- /netbsd/provisioners/xorg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/provisioners/xorg.sh -------------------------------------------------------------------------------- /netbsd/vagrantfiles/Vagrantfile.NetBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/vagrantfiles/Vagrantfile.NetBSD -------------------------------------------------------------------------------- /netbsd/vagrantfiles/Vagrantfile.NetBSD-8.3+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/vagrantfiles/Vagrantfile.NetBSD-8.3+ -------------------------------------------------------------------------------- /netbsd/vagrantfiles/Vagrantfile.NetBSD-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/netbsd/vagrantfiles/Vagrantfile.NetBSD-sh -------------------------------------------------------------------------------- /openbsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/README.md -------------------------------------------------------------------------------- /openbsd/http/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/http/install.sh -------------------------------------------------------------------------------- /openbsd/openbsd-5.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.6/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-5.6/openbsd-5.6-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.6/openbsd-5.6-amd64.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.6/openbsd-5.6-i386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.6/openbsd-5.6-i386.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.7/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-5.7/openbsd-5.7-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.7/openbsd-5.7-amd64.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.7/openbsd-5.7-i386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.7/openbsd-5.7-i386.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.8/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-5.8/openbsd-5.8-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.8/openbsd-5.8-amd64.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.8/openbsd-5.8-i386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.8/openbsd-5.8-i386.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.9/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-5.9/openbsd-5.9-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.9/openbsd-5.9-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.9/openbsd-5.9-doas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.9/openbsd-5.9-doas.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.9/openbsd-5.9-sudo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.9/openbsd-5.9-sudo.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.9/openbsd-5.9-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.9/openbsd-5.9-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-5.9/openbsd-5.9-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-5.9/openbsd-5.9-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.0/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.0/install-full.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.0/install-full.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.0/install-mini.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.0/install-mini.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.0/openbsd-6.0-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.0/openbsd-6.0-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.0/openbsd-6.0-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.0/openbsd-6.0-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.0/openbsd-6.0-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.0/openbsd-6.0-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.0/openbsd-6.0-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.0/openbsd-6.0-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.1/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.1/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.1/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.1/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.1/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.1/openbsd-6.1-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.1/openbsd-6.1-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.1/openbsd-6.1-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.1/openbsd-6.1-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.1/openbsd-6.1-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.1/openbsd-6.1-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.1/openbsd-6.1-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.1/openbsd-6.1-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.1/openbsd-6.1-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.1/openbsd-6.1-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.2/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.2/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.2/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.2/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.2/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.2/openbsd-6.2-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.2/openbsd-6.2-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.2/openbsd-6.2-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.2/openbsd-6.2-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.2/openbsd-6.2-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.2/openbsd-6.2-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.2/openbsd-6.2-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.2/openbsd-6.2-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.2/openbsd-6.2-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.2/openbsd-6.2-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.3/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.3/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.3/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.3/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.3/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.3/openbsd-6.3-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.3/openbsd-6.3-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.3/openbsd-6.3-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.3/openbsd-6.3-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.3/openbsd-6.3-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.3/openbsd-6.3-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.3/openbsd-6.3-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.3/openbsd-6.3-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.3/openbsd-6.3-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.3/openbsd-6.3-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.4/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.4/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.4/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.4/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.4/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.4/openbsd-6.4-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.4/openbsd-6.4-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.4/openbsd-6.4-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.4/openbsd-6.4-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.4/openbsd-6.4-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.4/openbsd-6.4-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.4/openbsd-6.4-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.4/openbsd-6.4-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.4/openbsd-6.4-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.4/openbsd-6.4-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.5/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.5/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.5/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.5/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.5/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.5/openbsd-6.5-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.5/openbsd-6.5-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.5/openbsd-6.5-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.5/openbsd-6.5-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.5/openbsd-6.5-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.5/openbsd-6.5-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.5/openbsd-6.5-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.5/openbsd-6.5-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.5/openbsd-6.5-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.5/openbsd-6.5-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.6/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.6/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.6/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.6/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.6/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.6/openbsd-6.6-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.6/openbsd-6.6-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.6/openbsd-6.6-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.6/openbsd-6.6-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.6/openbsd-6.6-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.6/openbsd-6.6-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.6/openbsd-6.6-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.6/openbsd-6.6-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.6/openbsd-6.6-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.6/openbsd-6.6-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.7/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.7/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.7/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.7/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.7/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.7/openbsd-6.7-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.7/openbsd-6.7-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.7/openbsd-6.7-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.7/openbsd-6.7-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.7/openbsd-6.7-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.7/openbsd-6.7-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.7/openbsd-6.7-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.7/openbsd-6.7-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.7/openbsd-6.7-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.7/openbsd-6.7-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.8/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.8/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.8/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.8/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.8/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.8/openbsd-6.8-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.8/openbsd-6.8-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.8/openbsd-6.8-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.8/openbsd-6.8-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.8/openbsd-6.8-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.8/openbsd-6.8-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.8/openbsd-6.8-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.8/openbsd-6.8-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.8/openbsd-6.8-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.8/openbsd-6.8-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.9/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-6.9/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.9/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.9/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.9/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-6.9/openbsd-6.9-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.9/openbsd-6.9-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.9/openbsd-6.9-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.9/openbsd-6.9-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.9/openbsd-6.9-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.9/openbsd-6.9-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.9/openbsd-6.9-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.9/openbsd-6.9-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-6.9/openbsd-6.9-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-6.9/openbsd-6.9-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.0/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-7.0/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.0/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.0/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.0/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.0/openbsd-7.0-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.0/openbsd-7.0-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.0/openbsd-7.0-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.0/openbsd-7.0-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.0/openbsd-7.0-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.0/openbsd-7.0-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.0/openbsd-7.0-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.0/openbsd-7.0-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.0/openbsd-7.0-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.0/openbsd-7.0-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.1/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-7.1/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.1/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.1/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.1/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.1/openbsd-7.1-ansible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.1/openbsd-7.1-ansible.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.1/openbsd-7.1-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.1/openbsd-7.1-dwm.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.1/openbsd-7.1-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.1/openbsd-7.1-minimal.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.1/openbsd-7.1-x11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.1/openbsd-7.1-x11.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.1/openbsd-7.1-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.1/openbsd-7.1-xfce.json -------------------------------------------------------------------------------- /openbsd/openbsd-7.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.2/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-7.2/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.2/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.2/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.2/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.2/openbsd-7.2-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.2/openbsd-7.2-dwm.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.2/openbsd-7.2-x11.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.2/openbsd-7.2-x11.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.2/openbsd-7.2-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.2/openbsd-7.2-xfce.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.3/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-7.3/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.3/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.3/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.3/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.3/openbsd-7.3-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.3/openbsd-7.3-dwm.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.3/openbsd-7.3-x11.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.3/openbsd-7.3-x11.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.3/openbsd-7.3-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.3/openbsd-7.3-xfce.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.4/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-7.4/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.4/install.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.4/install_with_x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.4/install_with_x11.conf -------------------------------------------------------------------------------- /openbsd/openbsd-7.4/openbsd-7.4-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.4/openbsd-7.4-dwm.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.4/openbsd-7.4-x11.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.4/openbsd-7.4-x11.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.4/openbsd-7.4-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.4/openbsd-7.4-xfce.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.5/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-7.5/install.conf.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.5/install.conf.pkrtpl.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.5/openbsd-7.5-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.5/openbsd-7.5-dwm.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.5/openbsd-7.5-x11.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.5/openbsd-7.5-x11.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.5/openbsd-7.5-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.5/openbsd-7.5-xfce.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.6/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-7.6/install.conf.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.6/install.conf.pkrtpl.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.6/openbsd-7.6-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.6/openbsd-7.6-dwm.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.6/openbsd-7.6-x11.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.6/openbsd-7.6-x11.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.6/openbsd-7.6-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.6/openbsd-7.6-xfce.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.7/README.md -------------------------------------------------------------------------------- /openbsd/openbsd-7.7/install.conf.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.7/install.conf.pkrtpl.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.7/openbsd-7.7-dwm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.7/openbsd-7.7-dwm.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.7/openbsd-7.7-x11.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.7/openbsd-7.7-x11.pkr.hcl -------------------------------------------------------------------------------- /openbsd/openbsd-7.7/openbsd-7.7-xfce.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/openbsd-7.7/openbsd-7.7-xfce.pkr.hcl -------------------------------------------------------------------------------- /openbsd/provisioners/ansible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/ansible.sh -------------------------------------------------------------------------------- /openbsd/provisioners/ansible_openbsd6+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/ansible_openbsd6+.sh -------------------------------------------------------------------------------- /openbsd/provisioners/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/cleanup.sh -------------------------------------------------------------------------------- /openbsd/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /openbsd/provisioners/dwm+dmenu+st.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/dwm+dmenu+st.sh -------------------------------------------------------------------------------- /openbsd/provisioners/rsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/rsync.sh -------------------------------------------------------------------------------- /openbsd/provisioners/rsync_openbsd5.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/rsync_openbsd5.9.sh -------------------------------------------------------------------------------- /openbsd/provisioners/sharity-light.sh: -------------------------------------------------------------------------------- 1 | pkg_add sharity-light-1.3p0.tgz 2 | -------------------------------------------------------------------------------- /openbsd/provisioners/sudo_openbsd5.8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/sudo_openbsd5.8.sh -------------------------------------------------------------------------------- /openbsd/provisioners/sudo_openbsd5.9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/sudo_openbsd5.9.sh -------------------------------------------------------------------------------- /openbsd/provisioners/sudo_openbsd6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/sudo_openbsd6.sh -------------------------------------------------------------------------------- /openbsd/provisioners/vagrant-doas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/vagrant-doas.sh -------------------------------------------------------------------------------- /openbsd/provisioners/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/vagrant.sh -------------------------------------------------------------------------------- /openbsd/provisioners/vagrant_openbsd6.2+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/vagrant_openbsd6.2+.sh -------------------------------------------------------------------------------- /openbsd/provisioners/vagrant_openbsd6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/vagrant_openbsd6.sh -------------------------------------------------------------------------------- /openbsd/provisioners/vagrant_openbsd7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/vagrant_openbsd7.sh -------------------------------------------------------------------------------- /openbsd/provisioners/x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/x11.sh -------------------------------------------------------------------------------- /openbsd/provisioners/x11_openbsd6.5+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/x11_openbsd6.5+.sh -------------------------------------------------------------------------------- /openbsd/provisioners/xfce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/xfce.sh -------------------------------------------------------------------------------- /openbsd/provisioners/xfce_openbsd6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/xfce_openbsd6.sh -------------------------------------------------------------------------------- /openbsd/provisioners/xfce_openbsd7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/provisioners/xfce_openbsd7.sh -------------------------------------------------------------------------------- /openbsd/vagrantfiles/Vagrantfile.OpenBSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/vagrantfiles/Vagrantfile.OpenBSD -------------------------------------------------------------------------------- /openbsd/vagrantfiles/Vagrantfile.OpenBSD-7.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/vagrantfiles/Vagrantfile.OpenBSD-7.2 -------------------------------------------------------------------------------- /openbsd/vagrantfiles/Vagrantfile.OpenBSD-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/openbsd/vagrantfiles/Vagrantfile.OpenBSD-sh -------------------------------------------------------------------------------- /opensuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/README.md -------------------------------------------------------------------------------- /opensuse/leap-42.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/leap-42.3/README.md -------------------------------------------------------------------------------- /opensuse/leap-42.3/autoinst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/leap-42.3/autoinst.xml -------------------------------------------------------------------------------- /opensuse/leap-42.3/autoinst_kde.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/leap-42.3/autoinst_kde.xml -------------------------------------------------------------------------------- /opensuse/leap-42.3/autoinst_x11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/leap-42.3/autoinst_x11.xml -------------------------------------------------------------------------------- /opensuse/provisioners/ansible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/ansible.sh -------------------------------------------------------------------------------- /opensuse/provisioners/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/base.sh -------------------------------------------------------------------------------- /opensuse/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /opensuse/provisioners/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/docker.sh -------------------------------------------------------------------------------- /opensuse/provisioners/finalise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/finalise.sh -------------------------------------------------------------------------------- /opensuse/provisioners/kde.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/kde.sh -------------------------------------------------------------------------------- /opensuse/provisioners/suckless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/suckless.sh -------------------------------------------------------------------------------- /opensuse/provisioners/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/vagrant.sh -------------------------------------------------------------------------------- /opensuse/provisioners/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/virtualbox.sh -------------------------------------------------------------------------------- /opensuse/provisioners/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/opensuse/provisioners/vmware.sh -------------------------------------------------------------------------------- /tinycorelinux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/README.md -------------------------------------------------------------------------------- /tinycorelinux/http/install.sh.pkrtpl.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/http/install.sh.pkrtpl.hcl -------------------------------------------------------------------------------- /tinycorelinux/http/install_x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/http/install_x86.sh -------------------------------------------------------------------------------- /tinycorelinux/http/install_x86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/http/install_x86_64.sh -------------------------------------------------------------------------------- /tinycorelinux/provisioners/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/provisioners/cleanup.sh -------------------------------------------------------------------------------- /tinycorelinux/provisioners/compiletc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/provisioners/compiletc.sh -------------------------------------------------------------------------------- /tinycorelinux/provisioners/compiletc_tc16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/provisioners/compiletc_tc16.sh -------------------------------------------------------------------------------- /tinycorelinux/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /tinycorelinux/provisioners/kernel_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/provisioners/kernel_source.sh -------------------------------------------------------------------------------- /tinycorelinux/provisioners/python-pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/provisioners/python-pip.sh -------------------------------------------------------------------------------- /tinycorelinux/provisioners/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/provisioners/vagrant.sh -------------------------------------------------------------------------------- /tinycorelinux/provisioners/vmware_tc16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/provisioners/vmware_tc16.sh -------------------------------------------------------------------------------- /tinycorelinux/provisioners/x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/provisioners/x11.sh -------------------------------------------------------------------------------- /tinycorelinux/tinycorelinux-16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/tinycorelinux-16/README.md -------------------------------------------------------------------------------- /tinycorelinux/tinycorelinux-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/tinycorelinux-7/README.md -------------------------------------------------------------------------------- /tinycorelinux/tinycorelinux-7/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/tinycorelinux-7/build_all.sh -------------------------------------------------------------------------------- /tinycorelinux/tinycorelinux-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/tinycorelinux-8/README.md -------------------------------------------------------------------------------- /tinycorelinux/tinycorelinux-8/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/tinycorelinux-8/build_all.sh -------------------------------------------------------------------------------- /tinycorelinux/tinycorelinux-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/tinycorelinux-9/README.md -------------------------------------------------------------------------------- /tinycorelinux/tinycorelinux-9/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/tinycorelinux-9/build_all.sh -------------------------------------------------------------------------------- /tinycorelinux/vagrantfiles/Vagrantfile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/tinycorelinux/vagrantfiles/Vagrantfile.tc -------------------------------------------------------------------------------- /ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/README.md -------------------------------------------------------------------------------- /ubuntu/http/lubuntu-desktop.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/http/lubuntu-desktop.seed -------------------------------------------------------------------------------- /ubuntu/http/ubuntu-desktop.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/http/ubuntu-desktop.seed -------------------------------------------------------------------------------- /ubuntu/http/ubuntu-server.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/http/ubuntu-server.seed -------------------------------------------------------------------------------- /ubuntu/http/xubuntu-desktop.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/http/xubuntu-desktop.seed -------------------------------------------------------------------------------- /ubuntu/provisioners/ansible+testinfra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/ansible+testinfra.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/base.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/base_ubuntu1804+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/base_ubuntu1804+.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/cleanup.sh: -------------------------------------------------------------------------------- 1 | rm -f /home/${VAGRANT_USERNAME:-vagrant}/* 2 | -------------------------------------------------------------------------------- /ubuntu/provisioners/disk_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/disk_cleanup.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/dwm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/dwm.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/hyperv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/hyperv.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/lxde.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/lxde.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/lxqt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/lxqt.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/parallels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/parallels.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/update_mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/update_mirror.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/vagrant.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/virtualbox.sh -------------------------------------------------------------------------------- /ubuntu/provisioners/vmware-desktop.sh: -------------------------------------------------------------------------------- 1 | apt-get -y install ${OPEN_VM_TOOLS_DESKTOP:-open-vm-tools-desktop} 2 | -------------------------------------------------------------------------------- /ubuntu/provisioners/vmware-server.sh: -------------------------------------------------------------------------------- 1 | apt-get -y install open-vm-tools 2 | -------------------------------------------------------------------------------- /ubuntu/provisioners/xfce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/provisioners/xfce.sh -------------------------------------------------------------------------------- /ubuntu/ubuntu-12.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-12.04/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-12.04/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-12.04/preseed.cfg -------------------------------------------------------------------------------- /ubuntu/ubuntu-14.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-14.04/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-14.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-14.10/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-15.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-15.04/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-15.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-15.10/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-16.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-16.04/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-16.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-16.10/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-17.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-17.04/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-17.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-17.10/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-17.10/ubuntu-17.10-lxde.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-17.10/ubuntu-17.10-lxde.json -------------------------------------------------------------------------------- /ubuntu/ubuntu-17.10/ubuntu-17.10-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-17.10/ubuntu-17.10-xfce.json -------------------------------------------------------------------------------- /ubuntu/ubuntu-18.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-18.04/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-18.04/ubuntu-18.04-dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-18.04/ubuntu-18.04-dwm.json -------------------------------------------------------------------------------- /ubuntu/ubuntu-18.04/ubuntu-18.04-lxde.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-18.04/ubuntu-18.04-lxde.json -------------------------------------------------------------------------------- /ubuntu/ubuntu-18.04/ubuntu-18.04-xfce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-18.04/ubuntu-18.04-xfce.json -------------------------------------------------------------------------------- /ubuntu/ubuntu-20.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-20.04/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-20.04/http/meta-data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ubuntu/ubuntu-20.04/http/user-data.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-20.04/http/user-data.tmpl -------------------------------------------------------------------------------- /ubuntu/ubuntu-22.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-22.04/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-22.04/http/meta-data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ubuntu/ubuntu-22.04/http/user-data.pkrtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-22.04/http/user-data.pkrtpl -------------------------------------------------------------------------------- /ubuntu/ubuntu-24.04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-24.04/README.md -------------------------------------------------------------------------------- /ubuntu/ubuntu-24.04/http/meta-data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ubuntu/ubuntu-24.04/http/user-data.pkrtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/ubuntu-24.04/http/user-data.pkrtpl -------------------------------------------------------------------------------- /ubuntu/vagrantfiles/Vagrantfile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upperstream/packer-templates/HEAD/ubuntu/vagrantfiles/Vagrantfile.ubuntu --------------------------------------------------------------------------------