├── .azure-pipelines ├── development-ubuntu │ ├── 2204 │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── 2404 │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── development-windows │ ├── 2022 │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── 2025 │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── docker-linux │ └── community-ubuntu-server │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── docker-windows │ ├── community-windows-server-core │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── community-windows-server │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── iis │ ├── windows-server-core │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── windows-server │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── jobs.yml ├── kitchen-ubuntu │ ├── 2204 │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── 2404 │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── kitchen-windows │ ├── 2022 │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── 2025 │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── sql-server │ ├── 2019-developer-windows-server-core │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── 2019-developer-windows-server │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── stages.yml ├── ubuntu-desktop │ ├── 2204-lts-ubuntu │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ ├── 2204-lts-xubuntu │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ ├── 2404-lts-ubuntu │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── 2404-lts-xubuntu │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── ubuntu-server │ ├── 2204-lts │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── 2404-lts │ │ ├── hyperv.yml │ │ ├── qemu.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── visual-studio │ ├── 2022-community-windows-10 │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── 2022-community-windows-11 │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── windows-10 │ ├── 21h2-enterprise-ltsc │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── 22h2-enterprise │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml ├── windows-11 │ ├── 21h2-enterprise │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ ├── 22h2-enterprise │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ ├── 23h2-enterprise │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ ├── 24h2-enterprise-ltsc │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ ├── 24h2-enterprise │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml │ └── insider-preview-enterprise │ │ ├── hyperv.yml │ │ ├── virtualbox.yml │ │ └── vmware.yml └── windows-server │ ├── 2022-standard-core │ ├── hyperv.yml │ ├── virtualbox.yml │ └── vmware.yml │ ├── 2022-standard │ ├── hyperv.yml │ ├── virtualbox.yml │ └── vmware.yml │ ├── 2025-standard-core │ ├── hyperv.yml │ ├── virtualbox.yml │ └── vmware.yml │ ├── 2025-standard │ ├── hyperv.yml │ ├── qemu.yml │ ├── virtualbox.yml │ └── vmware.yml │ ├── insider-preview-standard-core │ ├── hyperv.yml │ ├── virtualbox.yml │ └── vmware.yml │ └── insider-preview-standard │ ├── hyperv.yml │ ├── virtualbox.yml │ └── vmware.yml ├── .config └── dotnet-tools.json ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .rubocop.yml ├── LICENSE.md ├── README.md ├── samples ├── README.md ├── core.Vagrantfile ├── development-ubuntu │ ├── Policyfile.rb │ ├── Policyfile.yml │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl ├── development-windows │ ├── Policyfile.rb │ ├── Policyfile.yml │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl ├── docker-linux │ ├── Policyfile.rb │ ├── Policyfile.yml │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl ├── docker-windows │ ├── Policyfile.rb │ ├── Policyfile.yml │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl ├── iis │ ├── Policyfile.rb │ ├── Policyfile.yml │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl ├── kitchen-ubuntu │ ├── Policyfile.rb │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl ├── kitchen-windows │ ├── Policyfile.rb │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl ├── sql-server │ ├── Policyfile.rb │ ├── Policyfile.yml │ ├── README.md │ ├── Vagrantfile │ ├── attributes.management-studio.json │ └── images.pkrvars.hcl ├── ubuntu-desktop │ ├── Policyfile.rb │ ├── README.md │ ├── Vagrantfile │ ├── attributes.ubuntu.json │ ├── attributes.xubuntu.json │ └── images.pkrvars.hcl ├── ubuntu-server │ ├── Policyfile.rb │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl ├── visual-studio │ ├── Policyfile.rb │ ├── README.md │ ├── Vagrantfile │ ├── attributes.2022-community.json │ └── images.pkrvars.hcl ├── windows-10 │ ├── Policyfile.rb │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl ├── windows-11 │ ├── Policyfile.rb │ ├── README.md │ ├── Vagrantfile │ ├── images.pkrvars.hcl │ └── setup.cmd └── windows-server │ ├── Policyfile.rb │ ├── README.md │ ├── Vagrantfile │ └── images.pkrvars.hcl └── src ├── ubuntu ├── boot │ ├── hyperv │ │ ├── meta-data │ │ └── user-data │ ├── qemu │ │ ├── meta-data │ │ └── user-data │ ├── virtualbox │ │ ├── meta-data │ │ └── user-data │ └── vmware │ │ ├── meta-data │ │ └── user-data ├── build.native.pkr.hcl ├── build.vagrant.pkr.hcl ├── chef │ ├── Policyfile.rb │ ├── apply.sh │ ├── cleanup.sh │ ├── cookbooks │ │ └── gusztavvargadr_packer_ubuntu │ │ │ ├── metadata.rb │ │ │ └── recipes │ │ │ ├── apply.rb │ │ │ ├── cleanup.rb │ │ │ ├── default.rb │ │ │ └── initialize.rb │ └── initialize.sh ├── core.pkr.hcl ├── source.amazon-ebs.pkr.hcl ├── source.core.pkr.hcl ├── source.hyperv.pkr.hcl ├── source.qemu.pkr.hcl ├── source.virtualbox.pkr.hcl ├── source.vmware.pkr.hcl └── vagrant │ ├── hyperv.Vagrantfile │ ├── qemu.Vagrantfile │ ├── vagrant.sh │ ├── virtualbox.Vagrantfile │ └── vmware.Vagrantfile └── windows ├── boot ├── autounattend-first-logon.ps1 └── autounattend.xml ├── build.native.pkr.hcl ├── build.vagrant.pkr.hcl ├── chef ├── Policyfile.rb ├── apply.ps1 ├── cleanup.ps1 ├── cookbooks │ └── gusztavvargadr_packer_windows │ │ ├── metadata.rb │ │ └── recipes │ │ ├── apply.rb │ │ ├── cleanup.rb │ │ ├── default.rb │ │ └── initialize.rb └── initialize.ps1 ├── core.pkr.hcl ├── source.amazon-ebs.pkr.hcl ├── source.core.pkr.hcl ├── source.hyperv.pkr.hcl ├── source.qemu.pkr.hcl ├── source.virtualbox.pkr.hcl ├── source.vmware.pkr.hcl └── vagrant ├── Autounattend.ps1 ├── Autounattend.xml ├── cleanup.ps1 ├── hyperv.Vagrantfile ├── qemu.Vagrantfile ├── shutdown.cmd ├── vagrant.pub ├── virtualbox.Vagrantfile └── vmware.Vagrantfile /.azure-pipelines/development-ubuntu/2204/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-ubuntu/2204/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-ubuntu/2204/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-ubuntu/2204/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-ubuntu/2204/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-ubuntu/2204/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-ubuntu/2204/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-ubuntu/2204/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-ubuntu/2404/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-ubuntu/2404/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-ubuntu/2404/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-ubuntu/2404/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-ubuntu/2404/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-ubuntu/2404/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-ubuntu/2404/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-ubuntu/2404/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-windows/2022/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-windows/2022/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-windows/2022/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-windows/2022/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-windows/2022/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-windows/2022/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-windows/2025/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-windows/2025/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-windows/2025/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-windows/2025/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/development-windows/2025/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/development-windows/2025/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-linux/community-ubuntu-server/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-linux/community-ubuntu-server/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-linux/community-ubuntu-server/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-linux/community-ubuntu-server/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-linux/community-ubuntu-server/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-linux/community-ubuntu-server/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-linux/community-ubuntu-server/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-linux/community-ubuntu-server/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-windows/community-windows-server-core/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-windows/community-windows-server-core/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-windows/community-windows-server-core/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-windows/community-windows-server-core/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-windows/community-windows-server-core/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-windows/community-windows-server-core/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-windows/community-windows-server/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-windows/community-windows-server/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-windows/community-windows-server/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-windows/community-windows-server/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/docker-windows/community-windows-server/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/docker-windows/community-windows-server/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/iis/windows-server-core/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/iis/windows-server-core/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/iis/windows-server-core/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/iis/windows-server-core/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/iis/windows-server-core/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/iis/windows-server-core/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/iis/windows-server/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/iis/windows-server/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/iis/windows-server/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/iis/windows-server/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/iis/windows-server/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/iis/windows-server/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/jobs.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-ubuntu/2204/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-ubuntu/2204/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-ubuntu/2204/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-ubuntu/2204/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-ubuntu/2204/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-ubuntu/2204/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-ubuntu/2204/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-ubuntu/2204/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-ubuntu/2404/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-ubuntu/2404/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-ubuntu/2404/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-ubuntu/2404/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-ubuntu/2404/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-ubuntu/2404/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-ubuntu/2404/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-ubuntu/2404/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-windows/2022/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-windows/2022/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-windows/2022/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-windows/2022/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-windows/2022/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-windows/2022/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-windows/2025/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-windows/2025/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-windows/2025/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-windows/2025/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/kitchen-windows/2025/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/kitchen-windows/2025/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/sql-server/2019-developer-windows-server-core/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/sql-server/2019-developer-windows-server-core/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/sql-server/2019-developer-windows-server-core/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/sql-server/2019-developer-windows-server-core/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/sql-server/2019-developer-windows-server-core/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/sql-server/2019-developer-windows-server-core/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/sql-server/2019-developer-windows-server/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/sql-server/2019-developer-windows-server/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/sql-server/2019-developer-windows-server/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/sql-server/2019-developer-windows-server/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/sql-server/2019-developer-windows-server/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/sql-server/2019-developer-windows-server/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/stages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/stages.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2204-lts-ubuntu/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2204-lts-ubuntu/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2204-lts-ubuntu/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2204-lts-ubuntu/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2204-lts-ubuntu/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2204-lts-ubuntu/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2204-lts-ubuntu/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2204-lts-ubuntu/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2204-lts-xubuntu/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2204-lts-xubuntu/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2204-lts-xubuntu/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2204-lts-xubuntu/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2204-lts-xubuntu/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2204-lts-xubuntu/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2204-lts-xubuntu/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2204-lts-xubuntu/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2404-lts-ubuntu/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2404-lts-ubuntu/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2404-lts-ubuntu/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2404-lts-ubuntu/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2404-lts-ubuntu/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2404-lts-ubuntu/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2404-lts-ubuntu/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2404-lts-ubuntu/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2404-lts-xubuntu/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2404-lts-xubuntu/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2404-lts-xubuntu/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2404-lts-xubuntu/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2404-lts-xubuntu/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2404-lts-xubuntu/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-desktop/2404-lts-xubuntu/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-desktop/2404-lts-xubuntu/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-server/2204-lts/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-server/2204-lts/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-server/2204-lts/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-server/2204-lts/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-server/2204-lts/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-server/2204-lts/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-server/2204-lts/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-server/2204-lts/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-server/2404-lts/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-server/2404-lts/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-server/2404-lts/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-server/2404-lts/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-server/2404-lts/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-server/2404-lts/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/ubuntu-server/2404-lts/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/ubuntu-server/2404-lts/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/visual-studio/2022-community-windows-10/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/visual-studio/2022-community-windows-10/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/visual-studio/2022-community-windows-10/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/visual-studio/2022-community-windows-10/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/visual-studio/2022-community-windows-10/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/visual-studio/2022-community-windows-10/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/visual-studio/2022-community-windows-11/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/visual-studio/2022-community-windows-11/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/visual-studio/2022-community-windows-11/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/visual-studio/2022-community-windows-11/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/visual-studio/2022-community-windows-11/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/visual-studio/2022-community-windows-11/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-10/21h2-enterprise-ltsc/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-10/21h2-enterprise-ltsc/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-10/21h2-enterprise-ltsc/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-10/21h2-enterprise-ltsc/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-10/21h2-enterprise-ltsc/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-10/21h2-enterprise-ltsc/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-10/22h2-enterprise/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-10/22h2-enterprise/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-10/22h2-enterprise/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-10/22h2-enterprise/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-10/22h2-enterprise/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-10/22h2-enterprise/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/21h2-enterprise/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/21h2-enterprise/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/21h2-enterprise/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/21h2-enterprise/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/21h2-enterprise/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/21h2-enterprise/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/22h2-enterprise/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/22h2-enterprise/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/22h2-enterprise/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/22h2-enterprise/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/22h2-enterprise/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/22h2-enterprise/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/23h2-enterprise/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/23h2-enterprise/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/23h2-enterprise/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/23h2-enterprise/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/23h2-enterprise/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/23h2-enterprise/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/24h2-enterprise-ltsc/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/24h2-enterprise-ltsc/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/24h2-enterprise-ltsc/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/24h2-enterprise-ltsc/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/24h2-enterprise-ltsc/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/24h2-enterprise-ltsc/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/24h2-enterprise/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/24h2-enterprise/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/24h2-enterprise/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/24h2-enterprise/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/24h2-enterprise/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/24h2-enterprise/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/insider-preview-enterprise/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/insider-preview-enterprise/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/insider-preview-enterprise/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/insider-preview-enterprise/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-11/insider-preview-enterprise/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-11/insider-preview-enterprise/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2022-standard-core/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2022-standard-core/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2022-standard-core/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2022-standard-core/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2022-standard-core/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2022-standard-core/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2022-standard/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2022-standard/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2022-standard/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2022-standard/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2022-standard/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2022-standard/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2025-standard-core/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2025-standard-core/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2025-standard-core/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2025-standard-core/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2025-standard-core/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2025-standard-core/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2025-standard/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2025-standard/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2025-standard/qemu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2025-standard/qemu.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2025-standard/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2025-standard/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/2025-standard/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/2025-standard/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/insider-preview-standard-core/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/insider-preview-standard-core/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/insider-preview-standard-core/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/insider-preview-standard-core/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/insider-preview-standard-core/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/insider-preview-standard-core/vmware.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/insider-preview-standard/hyperv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/insider-preview-standard/hyperv.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/insider-preview-standard/virtualbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/insider-preview-standard/virtualbox.yml -------------------------------------------------------------------------------- /.azure-pipelines/windows-server/insider-preview-standard/vmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.azure-pipelines/windows-server/insider-preview-standard/vmware.yml -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.lock.json 2 | packer_cache 3 | artifacts 4 | .vagrant 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/README.md -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/core.Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/core.Vagrantfile -------------------------------------------------------------------------------- /samples/development-ubuntu/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-ubuntu/Policyfile.rb -------------------------------------------------------------------------------- /samples/development-ubuntu/Policyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-ubuntu/Policyfile.yml -------------------------------------------------------------------------------- /samples/development-ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-ubuntu/README.md -------------------------------------------------------------------------------- /samples/development-ubuntu/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-ubuntu/Vagrantfile -------------------------------------------------------------------------------- /samples/development-ubuntu/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-ubuntu/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/development-windows/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-windows/Policyfile.rb -------------------------------------------------------------------------------- /samples/development-windows/Policyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-windows/Policyfile.yml -------------------------------------------------------------------------------- /samples/development-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-windows/README.md -------------------------------------------------------------------------------- /samples/development-windows/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-windows/Vagrantfile -------------------------------------------------------------------------------- /samples/development-windows/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/development-windows/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/docker-linux/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-linux/Policyfile.rb -------------------------------------------------------------------------------- /samples/docker-linux/Policyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-linux/Policyfile.yml -------------------------------------------------------------------------------- /samples/docker-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-linux/README.md -------------------------------------------------------------------------------- /samples/docker-linux/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-linux/Vagrantfile -------------------------------------------------------------------------------- /samples/docker-linux/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-linux/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/docker-windows/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-windows/Policyfile.rb -------------------------------------------------------------------------------- /samples/docker-windows/Policyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-windows/Policyfile.yml -------------------------------------------------------------------------------- /samples/docker-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-windows/README.md -------------------------------------------------------------------------------- /samples/docker-windows/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-windows/Vagrantfile -------------------------------------------------------------------------------- /samples/docker-windows/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/docker-windows/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/iis/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/iis/Policyfile.rb -------------------------------------------------------------------------------- /samples/iis/Policyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/iis/Policyfile.yml -------------------------------------------------------------------------------- /samples/iis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/iis/README.md -------------------------------------------------------------------------------- /samples/iis/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/iis/Vagrantfile -------------------------------------------------------------------------------- /samples/iis/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/iis/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/kitchen-ubuntu/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/kitchen-ubuntu/Policyfile.rb -------------------------------------------------------------------------------- /samples/kitchen-ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/kitchen-ubuntu/README.md -------------------------------------------------------------------------------- /samples/kitchen-ubuntu/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/kitchen-ubuntu/Vagrantfile -------------------------------------------------------------------------------- /samples/kitchen-ubuntu/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/kitchen-ubuntu/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/kitchen-windows/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/kitchen-windows/Policyfile.rb -------------------------------------------------------------------------------- /samples/kitchen-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/kitchen-windows/README.md -------------------------------------------------------------------------------- /samples/kitchen-windows/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/kitchen-windows/Vagrantfile -------------------------------------------------------------------------------- /samples/kitchen-windows/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/kitchen-windows/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/sql-server/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/sql-server/Policyfile.rb -------------------------------------------------------------------------------- /samples/sql-server/Policyfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/sql-server/Policyfile.yml -------------------------------------------------------------------------------- /samples/sql-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/sql-server/README.md -------------------------------------------------------------------------------- /samples/sql-server/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/sql-server/Vagrantfile -------------------------------------------------------------------------------- /samples/sql-server/attributes.management-studio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/sql-server/attributes.management-studio.json -------------------------------------------------------------------------------- /samples/sql-server/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/sql-server/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/ubuntu-desktop/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-desktop/Policyfile.rb -------------------------------------------------------------------------------- /samples/ubuntu-desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-desktop/README.md -------------------------------------------------------------------------------- /samples/ubuntu-desktop/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-desktop/Vagrantfile -------------------------------------------------------------------------------- /samples/ubuntu-desktop/attributes.ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-desktop/attributes.ubuntu.json -------------------------------------------------------------------------------- /samples/ubuntu-desktop/attributes.xubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-desktop/attributes.xubuntu.json -------------------------------------------------------------------------------- /samples/ubuntu-desktop/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-desktop/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/ubuntu-server/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-server/Policyfile.rb -------------------------------------------------------------------------------- /samples/ubuntu-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-server/README.md -------------------------------------------------------------------------------- /samples/ubuntu-server/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-server/Vagrantfile -------------------------------------------------------------------------------- /samples/ubuntu-server/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/ubuntu-server/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/visual-studio/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/visual-studio/Policyfile.rb -------------------------------------------------------------------------------- /samples/visual-studio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/visual-studio/README.md -------------------------------------------------------------------------------- /samples/visual-studio/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/visual-studio/Vagrantfile -------------------------------------------------------------------------------- /samples/visual-studio/attributes.2022-community.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/visual-studio/attributes.2022-community.json -------------------------------------------------------------------------------- /samples/visual-studio/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/visual-studio/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/windows-10/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-10/Policyfile.rb -------------------------------------------------------------------------------- /samples/windows-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-10/README.md -------------------------------------------------------------------------------- /samples/windows-10/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-10/Vagrantfile -------------------------------------------------------------------------------- /samples/windows-10/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-10/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/windows-11/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-11/Policyfile.rb -------------------------------------------------------------------------------- /samples/windows-11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-11/README.md -------------------------------------------------------------------------------- /samples/windows-11/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-11/Vagrantfile -------------------------------------------------------------------------------- /samples/windows-11/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-11/images.pkrvars.hcl -------------------------------------------------------------------------------- /samples/windows-11/setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-11/setup.cmd -------------------------------------------------------------------------------- /samples/windows-server/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-server/Policyfile.rb -------------------------------------------------------------------------------- /samples/windows-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-server/README.md -------------------------------------------------------------------------------- /samples/windows-server/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-server/Vagrantfile -------------------------------------------------------------------------------- /samples/windows-server/images.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/samples/windows-server/images.pkrvars.hcl -------------------------------------------------------------------------------- /src/ubuntu/boot/hyperv/meta-data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ubuntu/boot/hyperv/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/boot/hyperv/user-data -------------------------------------------------------------------------------- /src/ubuntu/boot/qemu/meta-data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ubuntu/boot/qemu/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/boot/qemu/user-data -------------------------------------------------------------------------------- /src/ubuntu/boot/virtualbox/meta-data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ubuntu/boot/virtualbox/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/boot/virtualbox/user-data -------------------------------------------------------------------------------- /src/ubuntu/boot/vmware/meta-data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ubuntu/boot/vmware/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/boot/vmware/user-data -------------------------------------------------------------------------------- /src/ubuntu/build.native.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/build.native.pkr.hcl -------------------------------------------------------------------------------- /src/ubuntu/build.vagrant.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/build.vagrant.pkr.hcl -------------------------------------------------------------------------------- /src/ubuntu/chef/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/chef/Policyfile.rb -------------------------------------------------------------------------------- /src/ubuntu/chef/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/chef/apply.sh -------------------------------------------------------------------------------- /src/ubuntu/chef/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/chef/cleanup.sh -------------------------------------------------------------------------------- /src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/metadata.rb -------------------------------------------------------------------------------- /src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/recipes/apply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/recipes/apply.rb -------------------------------------------------------------------------------- /src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/recipes/cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/recipes/cleanup.rb -------------------------------------------------------------------------------- /src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/recipes/default.rb -------------------------------------------------------------------------------- /src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/recipes/initialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/chef/cookbooks/gusztavvargadr_packer_ubuntu/recipes/initialize.rb -------------------------------------------------------------------------------- /src/ubuntu/chef/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/chef/initialize.sh -------------------------------------------------------------------------------- /src/ubuntu/core.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/core.pkr.hcl -------------------------------------------------------------------------------- /src/ubuntu/source.amazon-ebs.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/source.amazon-ebs.pkr.hcl -------------------------------------------------------------------------------- /src/ubuntu/source.core.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/source.core.pkr.hcl -------------------------------------------------------------------------------- /src/ubuntu/source.hyperv.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/source.hyperv.pkr.hcl -------------------------------------------------------------------------------- /src/ubuntu/source.qemu.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/source.qemu.pkr.hcl -------------------------------------------------------------------------------- /src/ubuntu/source.virtualbox.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/source.virtualbox.pkr.hcl -------------------------------------------------------------------------------- /src/ubuntu/source.vmware.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/source.vmware.pkr.hcl -------------------------------------------------------------------------------- /src/ubuntu/vagrant/hyperv.Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/vagrant/hyperv.Vagrantfile -------------------------------------------------------------------------------- /src/ubuntu/vagrant/qemu.Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/vagrant/qemu.Vagrantfile -------------------------------------------------------------------------------- /src/ubuntu/vagrant/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/vagrant/vagrant.sh -------------------------------------------------------------------------------- /src/ubuntu/vagrant/virtualbox.Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/vagrant/virtualbox.Vagrantfile -------------------------------------------------------------------------------- /src/ubuntu/vagrant/vmware.Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/ubuntu/vagrant/vmware.Vagrantfile -------------------------------------------------------------------------------- /src/windows/boot/autounattend-first-logon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/boot/autounattend-first-logon.ps1 -------------------------------------------------------------------------------- /src/windows/boot/autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/boot/autounattend.xml -------------------------------------------------------------------------------- /src/windows/build.native.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/build.native.pkr.hcl -------------------------------------------------------------------------------- /src/windows/build.vagrant.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/build.vagrant.pkr.hcl -------------------------------------------------------------------------------- /src/windows/chef/Policyfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/chef/Policyfile.rb -------------------------------------------------------------------------------- /src/windows/chef/apply.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/chef/apply.ps1 -------------------------------------------------------------------------------- /src/windows/chef/cleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/chef/cleanup.ps1 -------------------------------------------------------------------------------- /src/windows/chef/cookbooks/gusztavvargadr_packer_windows/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/chef/cookbooks/gusztavvargadr_packer_windows/metadata.rb -------------------------------------------------------------------------------- /src/windows/chef/cookbooks/gusztavvargadr_packer_windows/recipes/apply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/chef/cookbooks/gusztavvargadr_packer_windows/recipes/apply.rb -------------------------------------------------------------------------------- /src/windows/chef/cookbooks/gusztavvargadr_packer_windows/recipes/cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/chef/cookbooks/gusztavvargadr_packer_windows/recipes/cleanup.rb -------------------------------------------------------------------------------- /src/windows/chef/cookbooks/gusztavvargadr_packer_windows/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/chef/cookbooks/gusztavvargadr_packer_windows/recipes/default.rb -------------------------------------------------------------------------------- /src/windows/chef/cookbooks/gusztavvargadr_packer_windows/recipes/initialize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/chef/cookbooks/gusztavvargadr_packer_windows/recipes/initialize.rb -------------------------------------------------------------------------------- /src/windows/chef/initialize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/chef/initialize.ps1 -------------------------------------------------------------------------------- /src/windows/core.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/core.pkr.hcl -------------------------------------------------------------------------------- /src/windows/source.amazon-ebs.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/source.amazon-ebs.pkr.hcl -------------------------------------------------------------------------------- /src/windows/source.core.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/source.core.pkr.hcl -------------------------------------------------------------------------------- /src/windows/source.hyperv.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/source.hyperv.pkr.hcl -------------------------------------------------------------------------------- /src/windows/source.qemu.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/source.qemu.pkr.hcl -------------------------------------------------------------------------------- /src/windows/source.virtualbox.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/source.virtualbox.pkr.hcl -------------------------------------------------------------------------------- /src/windows/source.vmware.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/source.vmware.pkr.hcl -------------------------------------------------------------------------------- /src/windows/vagrant/Autounattend.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/vagrant/Autounattend.ps1 -------------------------------------------------------------------------------- /src/windows/vagrant/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/vagrant/Autounattend.xml -------------------------------------------------------------------------------- /src/windows/vagrant/cleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/vagrant/cleanup.ps1 -------------------------------------------------------------------------------- /src/windows/vagrant/hyperv.Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/vagrant/hyperv.Vagrantfile -------------------------------------------------------------------------------- /src/windows/vagrant/qemu.Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/vagrant/qemu.Vagrantfile -------------------------------------------------------------------------------- /src/windows/vagrant/shutdown.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/vagrant/shutdown.cmd -------------------------------------------------------------------------------- /src/windows/vagrant/vagrant.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/vagrant/vagrant.pub -------------------------------------------------------------------------------- /src/windows/vagrant/virtualbox.Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/vagrant/virtualbox.Vagrantfile -------------------------------------------------------------------------------- /src/windows/vagrant/vmware.Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusztavvargadr/packer/HEAD/src/windows/vagrant/vmware.Vagrantfile --------------------------------------------------------------------------------