├── .gitignore ├── LICENSE ├── README.md ├── almalinux9-aarch64 ├── AlmaLinux_9.json ├── http │ └── ks.cfg └── scripts │ ├── cleanup.sh │ ├── vagrant.sh │ ├── vmtools.sh │ └── zerodisk.sh ├── freebsd13-aarch64 ├── FreeBSD13.json ├── Vagrantfile.rb ├── http │ ├── bsdinstallscript │ └── fetch.sh └── scripts │ ├── cleanup.sh │ ├── vagrant.sh │ ├── vmtools.sh │ └── zerodisk.sh └── freebsd14-aarch64 ├── FreeBSD14.json ├── Vagrantfile.rb ├── http ├── bsdinstallscript └── fetch.sh └── scripts ├── cleanup.sh ├── vagrant.sh ├── vmtools.sh └── zerodisk.sh /.gitignore: -------------------------------------------------------------------------------- 1 | output-* 2 | packer_cache 3 | *.box 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/README.md -------------------------------------------------------------------------------- /almalinux9-aarch64/AlmaLinux_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/almalinux9-aarch64/AlmaLinux_9.json -------------------------------------------------------------------------------- /almalinux9-aarch64/http/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/almalinux9-aarch64/http/ks.cfg -------------------------------------------------------------------------------- /almalinux9-aarch64/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/almalinux9-aarch64/scripts/cleanup.sh -------------------------------------------------------------------------------- /almalinux9-aarch64/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/almalinux9-aarch64/scripts/vagrant.sh -------------------------------------------------------------------------------- /almalinux9-aarch64/scripts/vmtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/almalinux9-aarch64/scripts/vmtools.sh -------------------------------------------------------------------------------- /almalinux9-aarch64/scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/almalinux9-aarch64/scripts/zerodisk.sh -------------------------------------------------------------------------------- /freebsd13-aarch64/FreeBSD13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd13-aarch64/FreeBSD13.json -------------------------------------------------------------------------------- /freebsd13-aarch64/Vagrantfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd13-aarch64/Vagrantfile.rb -------------------------------------------------------------------------------- /freebsd13-aarch64/http/bsdinstallscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd13-aarch64/http/bsdinstallscript -------------------------------------------------------------------------------- /freebsd13-aarch64/http/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd13-aarch64/http/fetch.sh -------------------------------------------------------------------------------- /freebsd13-aarch64/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd13-aarch64/scripts/cleanup.sh -------------------------------------------------------------------------------- /freebsd13-aarch64/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd13-aarch64/scripts/vagrant.sh -------------------------------------------------------------------------------- /freebsd13-aarch64/scripts/vmtools.sh: -------------------------------------------------------------------------------- 1 | pkg install -y parallels-tools 2 | -------------------------------------------------------------------------------- /freebsd13-aarch64/scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd13-aarch64/scripts/zerodisk.sh -------------------------------------------------------------------------------- /freebsd14-aarch64/FreeBSD14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd14-aarch64/FreeBSD14.json -------------------------------------------------------------------------------- /freebsd14-aarch64/Vagrantfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd14-aarch64/Vagrantfile.rb -------------------------------------------------------------------------------- /freebsd14-aarch64/http/bsdinstallscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd14-aarch64/http/bsdinstallscript -------------------------------------------------------------------------------- /freebsd14-aarch64/http/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd14-aarch64/http/fetch.sh -------------------------------------------------------------------------------- /freebsd14-aarch64/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd14-aarch64/scripts/cleanup.sh -------------------------------------------------------------------------------- /freebsd14-aarch64/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd14-aarch64/scripts/vagrant.sh -------------------------------------------------------------------------------- /freebsd14-aarch64/scripts/vmtools.sh: -------------------------------------------------------------------------------- 1 | pkg install -y parallels-tools 2 | -------------------------------------------------------------------------------- /freebsd14-aarch64/scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unchained-llc/insaneworks-packer-template/HEAD/freebsd14-aarch64/scripts/zerodisk.sh --------------------------------------------------------------------------------