├── .gitignore ├── README.md ├── osx ├── app-to-dmg │ ├── prepare_iso.sh │ └── support │ │ ├── OSInstall.collection │ │ ├── generate_shadowhash │ │ ├── minstallconfig.xml │ │ ├── pkg-postinstall │ │ ├── user.plist │ │ └── vagrant.jpg ├── bootstrap.sh ├── detect-new-network-interfaces.sh ├── enable-arcfour-cipher-in-ssh.sh ├── enable-vagrant-user-auto-login.sh ├── install-os-updates.sh ├── install-vmware-tools.sh ├── install-xcode-cli-tools.sh ├── kcpassword ├── osx10 │ └── vars.json ├── osx11 │ └── vars.json ├── osx8 │ └── vars.json ├── osx9 │ └── vars.json ├── packer.json ├── prep-install-vmware-tools.sh ├── template-setup-miscellaneous-ui.sh └── vagrant-template.rb ├── template-packer-config.sed ├── vagrant.pub ├── vars.json └── windows ├── bootstrap-configure-passwords.ps1 ├── bootstrap-configure-power-management.ps1 ├── bootstrap-configure-servermanager.ps1 ├── bootstrap-configure-winrm.ps1 ├── bootstrap-disable-uac.cmd ├── bootstrap-install-dotnet452.cmd ├── bootstrap-install-openssh.ps1 ├── bootstrap-install-powershell2.cmd ├── bootstrap-install-powershell3.cmd ├── bootstrap-miscellaneous-ui-preferences.ps1 ├── bootstrap-set-all-network-interfaces-to-private.ps1 ├── bootstrap-set-powershell-execution-policy.cmd ├── bootstrap-upload.cmd ├── bootstrap.cmd ├── install-vmware-tools.ps1 ├── packer.json ├── remove-installation-files.ps1 ├── vagrant-template.rb ├── win10 └── enterprise │ ├── x64 │ ├── template-Autounattend.xml │ └── vars.json │ └── x86 │ ├── template-Autounattend.xml │ └── vars.json ├── win2008 ├── bootstrap-install-powershell2.cmd ├── bootstrap-install-powershell3.cmd └── standard │ ├── x64 │ ├── template-Autounattend.xml │ └── vars.json │ └── x86 │ ├── template-Autounattend.xml │ └── vars.json ├── win2008r2 ├── bootstrap-install-powershell3.cmd └── standard │ ├── template-Autounattend.xml │ └── vars.json ├── win2012 └── standard │ ├── template-Autounattend.xml │ └── vars.json ├── win2012r2 └── standard │ ├── template-Autounattend.xml │ └── vars.json ├── win7 ├── bootstrap-install-powershell3.cmd └── pro │ ├── x64 │ ├── template-Autounattend.xml │ └── vars.json │ └── x86 │ ├── template-Autounattend.xml │ └── vars.json ├── win8 └── pro │ ├── x64 │ ├── template-Autounattend.xml │ └── vars.json │ └── x86 │ ├── template-Autounattend.xml │ └── vars.json └── win81 └── pro ├── x64 ├── template-Autounattend.xml └── vars.json └── x86 ├── template-Autounattend.xml └── vars.json /.gitignore: -------------------------------------------------------------------------------- 1 | /output/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/README.md -------------------------------------------------------------------------------- /osx/app-to-dmg/prepare_iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/app-to-dmg/prepare_iso.sh -------------------------------------------------------------------------------- /osx/app-to-dmg/support/OSInstall.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/app-to-dmg/support/OSInstall.collection -------------------------------------------------------------------------------- /osx/app-to-dmg/support/generate_shadowhash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/app-to-dmg/support/generate_shadowhash -------------------------------------------------------------------------------- /osx/app-to-dmg/support/minstallconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/app-to-dmg/support/minstallconfig.xml -------------------------------------------------------------------------------- /osx/app-to-dmg/support/pkg-postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/app-to-dmg/support/pkg-postinstall -------------------------------------------------------------------------------- /osx/app-to-dmg/support/user.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/app-to-dmg/support/user.plist -------------------------------------------------------------------------------- /osx/app-to-dmg/support/vagrant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/app-to-dmg/support/vagrant.jpg -------------------------------------------------------------------------------- /osx/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/bootstrap.sh -------------------------------------------------------------------------------- /osx/detect-new-network-interfaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/detect-new-network-interfaces.sh -------------------------------------------------------------------------------- /osx/enable-arcfour-cipher-in-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/enable-arcfour-cipher-in-ssh.sh -------------------------------------------------------------------------------- /osx/enable-vagrant-user-auto-login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/enable-vagrant-user-auto-login.sh -------------------------------------------------------------------------------- /osx/install-os-updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/install-os-updates.sh -------------------------------------------------------------------------------- /osx/install-vmware-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/install-vmware-tools.sh -------------------------------------------------------------------------------- /osx/install-xcode-cli-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/install-xcode-cli-tools.sh -------------------------------------------------------------------------------- /osx/kcpassword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/kcpassword -------------------------------------------------------------------------------- /osx/osx10/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/osx10/vars.json -------------------------------------------------------------------------------- /osx/osx11/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/osx11/vars.json -------------------------------------------------------------------------------- /osx/osx8/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/osx8/vars.json -------------------------------------------------------------------------------- /osx/osx9/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/osx9/vars.json -------------------------------------------------------------------------------- /osx/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/packer.json -------------------------------------------------------------------------------- /osx/prep-install-vmware-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/prep-install-vmware-tools.sh -------------------------------------------------------------------------------- /osx/template-setup-miscellaneous-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/template-setup-miscellaneous-ui.sh -------------------------------------------------------------------------------- /osx/vagrant-template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/osx/vagrant-template.rb -------------------------------------------------------------------------------- /template-packer-config.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/template-packer-config.sed -------------------------------------------------------------------------------- /vagrant.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/vagrant.pub -------------------------------------------------------------------------------- /vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/vars.json -------------------------------------------------------------------------------- /windows/bootstrap-configure-passwords.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-configure-passwords.ps1 -------------------------------------------------------------------------------- /windows/bootstrap-configure-power-management.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-configure-power-management.ps1 -------------------------------------------------------------------------------- /windows/bootstrap-configure-servermanager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-configure-servermanager.ps1 -------------------------------------------------------------------------------- /windows/bootstrap-configure-winrm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-configure-winrm.ps1 -------------------------------------------------------------------------------- /windows/bootstrap-disable-uac.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-disable-uac.cmd -------------------------------------------------------------------------------- /windows/bootstrap-install-dotnet452.cmd: -------------------------------------------------------------------------------- 1 | "C:\Windows\Temp\dotnet452.exe" /quiet /norestart 2 | -------------------------------------------------------------------------------- /windows/bootstrap-install-openssh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-install-openssh.ps1 -------------------------------------------------------------------------------- /windows/bootstrap-install-powershell2.cmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/bootstrap-install-powershell3.cmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/bootstrap-miscellaneous-ui-preferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-miscellaneous-ui-preferences.ps1 -------------------------------------------------------------------------------- /windows/bootstrap-set-all-network-interfaces-to-private.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-set-all-network-interfaces-to-private.ps1 -------------------------------------------------------------------------------- /windows/bootstrap-set-powershell-execution-policy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-set-powershell-execution-policy.cmd -------------------------------------------------------------------------------- /windows/bootstrap-upload.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap-upload.cmd -------------------------------------------------------------------------------- /windows/bootstrap.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/bootstrap.cmd -------------------------------------------------------------------------------- /windows/install-vmware-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/install-vmware-tools.ps1 -------------------------------------------------------------------------------- /windows/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/packer.json -------------------------------------------------------------------------------- /windows/remove-installation-files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/remove-installation-files.ps1 -------------------------------------------------------------------------------- /windows/vagrant-template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/vagrant-template.rb -------------------------------------------------------------------------------- /windows/win10/enterprise/x64/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win10/enterprise/x64/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win10/enterprise/x64/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win10/enterprise/x64/vars.json -------------------------------------------------------------------------------- /windows/win10/enterprise/x86/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win10/enterprise/x86/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win10/enterprise/x86/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win10/enterprise/x86/vars.json -------------------------------------------------------------------------------- /windows/win2008/bootstrap-install-powershell2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2008/bootstrap-install-powershell2.cmd -------------------------------------------------------------------------------- /windows/win2008/bootstrap-install-powershell3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2008/bootstrap-install-powershell3.cmd -------------------------------------------------------------------------------- /windows/win2008/standard/x64/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2008/standard/x64/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win2008/standard/x64/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2008/standard/x64/vars.json -------------------------------------------------------------------------------- /windows/win2008/standard/x86/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2008/standard/x86/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win2008/standard/x86/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2008/standard/x86/vars.json -------------------------------------------------------------------------------- /windows/win2008r2/bootstrap-install-powershell3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2008r2/bootstrap-install-powershell3.cmd -------------------------------------------------------------------------------- /windows/win2008r2/standard/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2008r2/standard/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win2008r2/standard/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2008r2/standard/vars.json -------------------------------------------------------------------------------- /windows/win2012/standard/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2012/standard/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win2012/standard/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2012/standard/vars.json -------------------------------------------------------------------------------- /windows/win2012r2/standard/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2012r2/standard/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win2012r2/standard/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win2012r2/standard/vars.json -------------------------------------------------------------------------------- /windows/win7/bootstrap-install-powershell3.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win7/bootstrap-install-powershell3.cmd -------------------------------------------------------------------------------- /windows/win7/pro/x64/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win7/pro/x64/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win7/pro/x64/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win7/pro/x64/vars.json -------------------------------------------------------------------------------- /windows/win7/pro/x86/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win7/pro/x86/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win7/pro/x86/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win7/pro/x86/vars.json -------------------------------------------------------------------------------- /windows/win8/pro/x64/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win8/pro/x64/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win8/pro/x64/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win8/pro/x64/vars.json -------------------------------------------------------------------------------- /windows/win8/pro/x86/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win8/pro/x86/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win8/pro/x86/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win8/pro/x86/vars.json -------------------------------------------------------------------------------- /windows/win81/pro/x64/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win81/pro/x64/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win81/pro/x64/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win81/pro/x64/vars.json -------------------------------------------------------------------------------- /windows/win81/pro/x86/template-Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win81/pro/x86/template-Autounattend.xml -------------------------------------------------------------------------------- /windows/win81/pro/x86/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonyBlakey/packer-platforms/HEAD/windows/win81/pro/x86/vars.json --------------------------------------------------------------------------------