├── .gitignore ├── README.md ├── baseboxes ├── centos-5.7-vbox4216-pe-3.0.1 │ ├── Vagrantfile │ ├── build.sh │ └── metadata.json ├── win10-x64-vbox4330-nocm │ ├── Vagrantfile │ ├── build.sh │ └── metadata.json ├── win2003-x86-vbox4216-nocm │ ├── Vagrantfile │ ├── build.sh │ ├── metadata.json │ └── release.sh ├── win2008r2-x64-vbox4216-nocm │ ├── Vagrantfile │ ├── build.sh │ ├── metadata.json │ └── release.sh ├── win2008r2-x64-vmwarefusion5-nocm │ ├── Vagrantfile │ ├── build.sh │ ├── metadata.json │ └── release.sh ├── win2012-x64-vbox4216-nocm │ ├── Vagrantfile │ ├── build.sh │ ├── metadata.json │ └── release.sh ├── win2012r2-x64-vbox4216-nocm │ ├── Vagrantfile │ ├── build.sh │ ├── metadata.json │ └── release.sh ├── win2012r2-x64-vmwarefusion5-nocm │ ├── Vagrantfile │ ├── build.sh │ ├── metadata.json │ └── release.sh ├── win7pro-x64-vbox4216-nocm │ ├── Vagrantfile │ ├── build.sh │ ├── metadata.json │ └── release.sh └── win7pro-x64-vmwarefusion5-nocm │ ├── Vagrantfile │ ├── build.sh │ ├── metadata.json │ └── release.sh └── boxes ├── VagrantWindows.rb ├── centos ├── Vagrantfile ├── puppet │ └── manifests │ │ ├── site.pp │ │ ├── yum_installoptions.pp │ │ └── yum_provides.pp └── shell │ ├── InstallUTF8Package.sh │ ├── LocalDevPrep.sh │ ├── PrepareRHEL6.sh │ ├── PuppetInstall.sh │ ├── ReplacePuppetWithDev.sh │ ├── UpdateRuby.sh │ └── more_cowbell-1.0-1.noarch.rpm ├── chocolatey ├── Vagrantfile └── shell │ ├── InstallChocolatey.ps1 │ ├── InstallNet4.ps1 │ └── SmokeCommands.ps1 ├── microsoft-dsc ├── ReadMe.md ├── Vagrantfile ├── powershelldsc │ ├── Disable-LCM.ps1 │ ├── Disabled │ │ └── localhost.meta.mof │ ├── Enable-LCM.ps1 │ ├── Enabled │ │ └── localhost.meta.mof │ ├── GetAllResourcesInfo.ps1 │ ├── ModOverrides │ │ └── xDismFeature │ │ │ ├── DSCResources │ │ │ └── MSFT_xDismFeature │ │ │ │ ├── MSFT_xDismFeature.psm1 │ │ │ │ └── MSFT_xDismFeature.schema.mof │ │ │ ├── xDismFeature.psd1 │ │ │ └── xDismFeature_Documentation.html │ ├── PathUpdates │ │ └── localhost.mof │ ├── Set-LCMDebug.ps1 │ ├── Test.ps1 │ ├── invoke-resource-tests.ps1 │ ├── putty-0.63-installer.exe │ ├── run-dsc-configuration.ps1 │ ├── test.zip │ ├── zLogs_InvokeDSCResource_Times.log │ └── zLogs_StartDSCConfiguration_Times.log ├── puppet │ ├── PuppetFile │ ├── ReadMe.md │ ├── manifests │ │ ├── dsc.pp │ │ ├── empty.pp │ │ ├── presentation.pp │ │ └── site.pp │ └── modules │ │ └── ReadMe.md └── shell │ └── SetupDSCComponents.ps1 ├── nano └── Vagrantfile ├── shared ├── puppet │ ├── manifests │ │ ├── chocolatey_provider_tests.pp │ │ ├── pup1389.pp │ │ ├── puppet_upgrade.pp │ │ └── site.pp │ └── modules │ │ └── pup1389 │ │ ├── files │ │ └── jenkins-slave.exe │ │ └── templates │ │ ├── jenkins-slave.erb │ │ ├── jenkins-slave.exe.config.erb │ │ ├── jenkins-slave.xml.erb │ │ ├── jenkinsUrlFile.erb │ │ └── proxy.xml.erb ├── resources │ ├── certs │ │ ├── geotrust.global.pem │ │ └── usertrust.network.pem │ └── packages │ │ └── installers │ │ └── Readme.md └── shell │ ├── InstallChocolatey.ps1 │ ├── InstallNet4.ps1 │ ├── InstallPuppet.ps1 │ ├── InstallPuppetFromMSI.ps1 │ ├── LocalDevPrep.ps1 │ ├── NotifyGuiAppsOfEnvironmentChanges.ps1 │ ├── PreparePuppetProvisioner.ps1 │ ├── PrepareWindows.ps1 │ ├── PuppetLabs_Windows_SupportScript.cmd │ ├── ReplaceInstalledPuppetWithDev.ps1 │ ├── config.yml │ ├── encode.rb │ ├── main.cmd │ ├── puppet.run.cmd │ └── windowsprep.cmd ├── smoketest-puppet ├── Vagrantfile ├── puppet │ ├── agent │ │ ├── acl_module_tests.pp │ │ ├── module_tests.pp │ │ ├── powershell_module_tests.pp │ │ ├── reboot_module_tests.pp │ │ └── registry_module_tests.pp │ └── master │ │ └── manifests │ │ └── site.pp └── shell │ ├── linux │ ├── PrepareRHEL6.sh │ ├── PrepareUbuntu.sh │ ├── PuppetInstallCentOS.sh │ ├── PuppetInstallMaster.sh │ ├── PuppetInstallUbuntu.sh │ └── SetPuppetMasterHost.sh │ └── windows │ ├── Link_Code_Module.ps1 │ └── SmokeCommands.ps1 ├── ubuntu-14.04-x64 ├── Vagrantfile ├── puppet │ └── manifests │ │ └── site.pp └── shell │ ├── InstallModules.sh │ ├── PrepareBox.sh │ ├── PuppetInstall.sh │ ├── ReplacePuppetWithDev.sh │ └── UpdateRuby.sh ├── ubuntu-server-12.04.2-x64 ├── Vagrantfile ├── puppet │ └── manifests │ │ └── site.pp └── shell │ ├── InstallModules.sh │ ├── PrepareBox.sh │ ├── PuppetInstall.sh │ ├── ReplacePuppetWithDev.sh │ └── UpdateRuby.sh ├── win10x64-vagrant ├── Vagrantfile └── puppet │ ├── PuppetFile │ ├── ReadMe.md │ └── manifests │ ├── dsc.pp │ ├── empty.pp │ └── provision.pp ├── win2003x86-vagrant ├── Vagrantfile └── puppet │ ├── PuppetFile │ ├── ReadMe.md │ ├── manifests │ └── site.pp │ └── modules │ └── ReadMe.md ├── win2008r2x64-vagrant ├── Vagrantfile └── puppet │ ├── PuppetFile │ ├── ReadMe.md │ ├── manifests │ ├── empty.pp │ ├── provision.pp │ ├── site.pp │ └── templates │ │ └── setup_env.bat.erb │ └── modules │ └── ReadMe.md ├── win2012r2x64-vagrant ├── Vagrantfile └── puppet │ ├── PuppetFile │ ├── ReadMe.md │ ├── manifests │ ├── empty.pp │ ├── provision.pp │ ├── provision2.pp │ ├── site.pp │ └── templates │ │ └── setup_env.bat.erb │ └── modules │ └── ReadMe.md └── win7x64pro-vagrant ├── Vagrantfile └── puppet ├── PuppetFile └── manifests └── site.pp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/README.md -------------------------------------------------------------------------------- /baseboxes/centos-5.7-vbox4216-pe-3.0.1/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/centos-5.7-vbox4216-pe-3.0.1/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/centos-5.7-vbox4216-pe-3.0.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/centos-5.7-vbox4216-pe-3.0.1/build.sh -------------------------------------------------------------------------------- /baseboxes/centos-5.7-vbox4216-pe-3.0.1/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "virtualbox" 3 | } -------------------------------------------------------------------------------- /baseboxes/win10-x64-vbox4330-nocm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win10-x64-vbox4330-nocm/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/win10-x64-vbox4330-nocm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win10-x64-vbox4330-nocm/build.sh -------------------------------------------------------------------------------- /baseboxes/win10-x64-vbox4330-nocm/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "virtualbox" 3 | } -------------------------------------------------------------------------------- /baseboxes/win2003-x86-vbox4216-nocm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2003-x86-vbox4216-nocm/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/win2003-x86-vbox4216-nocm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2003-x86-vbox4216-nocm/build.sh -------------------------------------------------------------------------------- /baseboxes/win2003-x86-vbox4216-nocm/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "virtualbox" 3 | } -------------------------------------------------------------------------------- /baseboxes/win2003-x86-vbox4216-nocm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2003-x86-vbox4216-nocm/release.sh -------------------------------------------------------------------------------- /baseboxes/win2008r2-x64-vbox4216-nocm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2008r2-x64-vbox4216-nocm/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/win2008r2-x64-vbox4216-nocm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2008r2-x64-vbox4216-nocm/build.sh -------------------------------------------------------------------------------- /baseboxes/win2008r2-x64-vbox4216-nocm/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "virtualbox" 3 | } -------------------------------------------------------------------------------- /baseboxes/win2008r2-x64-vbox4216-nocm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2008r2-x64-vbox4216-nocm/release.sh -------------------------------------------------------------------------------- /baseboxes/win2008r2-x64-vmwarefusion5-nocm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2008r2-x64-vmwarefusion5-nocm/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/win2008r2-x64-vmwarefusion5-nocm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2008r2-x64-vmwarefusion5-nocm/build.sh -------------------------------------------------------------------------------- /baseboxes/win2008r2-x64-vmwarefusion5-nocm/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "vmware_fusion" 3 | } 4 | -------------------------------------------------------------------------------- /baseboxes/win2008r2-x64-vmwarefusion5-nocm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2008r2-x64-vmwarefusion5-nocm/release.sh -------------------------------------------------------------------------------- /baseboxes/win2012-x64-vbox4216-nocm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2012-x64-vbox4216-nocm/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/win2012-x64-vbox4216-nocm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2012-x64-vbox4216-nocm/build.sh -------------------------------------------------------------------------------- /baseboxes/win2012-x64-vbox4216-nocm/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "virtualbox" 3 | } -------------------------------------------------------------------------------- /baseboxes/win2012-x64-vbox4216-nocm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2012-x64-vbox4216-nocm/release.sh -------------------------------------------------------------------------------- /baseboxes/win2012r2-x64-vbox4216-nocm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2012r2-x64-vbox4216-nocm/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/win2012r2-x64-vbox4216-nocm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2012r2-x64-vbox4216-nocm/build.sh -------------------------------------------------------------------------------- /baseboxes/win2012r2-x64-vbox4216-nocm/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "virtualbox" 3 | } -------------------------------------------------------------------------------- /baseboxes/win2012r2-x64-vbox4216-nocm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2012r2-x64-vbox4216-nocm/release.sh -------------------------------------------------------------------------------- /baseboxes/win2012r2-x64-vmwarefusion5-nocm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2012r2-x64-vmwarefusion5-nocm/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/win2012r2-x64-vmwarefusion5-nocm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2012r2-x64-vmwarefusion5-nocm/build.sh -------------------------------------------------------------------------------- /baseboxes/win2012r2-x64-vmwarefusion5-nocm/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "vmware_fusion" 3 | } 4 | -------------------------------------------------------------------------------- /baseboxes/win2012r2-x64-vmwarefusion5-nocm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win2012r2-x64-vmwarefusion5-nocm/release.sh -------------------------------------------------------------------------------- /baseboxes/win7pro-x64-vbox4216-nocm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win7pro-x64-vbox4216-nocm/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/win7pro-x64-vbox4216-nocm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win7pro-x64-vbox4216-nocm/build.sh -------------------------------------------------------------------------------- /baseboxes/win7pro-x64-vbox4216-nocm/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "virtualbox" 3 | } -------------------------------------------------------------------------------- /baseboxes/win7pro-x64-vbox4216-nocm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win7pro-x64-vbox4216-nocm/release.sh -------------------------------------------------------------------------------- /baseboxes/win7pro-x64-vmwarefusion5-nocm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win7pro-x64-vmwarefusion5-nocm/Vagrantfile -------------------------------------------------------------------------------- /baseboxes/win7pro-x64-vmwarefusion5-nocm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win7pro-x64-vmwarefusion5-nocm/build.sh -------------------------------------------------------------------------------- /baseboxes/win7pro-x64-vmwarefusion5-nocm/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "provider": "vmware_fusion" 3 | } -------------------------------------------------------------------------------- /baseboxes/win7pro-x64-vmwarefusion5-nocm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/baseboxes/win7pro-x64-vmwarefusion5-nocm/release.sh -------------------------------------------------------------------------------- /boxes/VagrantWindows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/VagrantWindows.rb -------------------------------------------------------------------------------- /boxes/centos/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/Vagrantfile -------------------------------------------------------------------------------- /boxes/centos/puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/puppet/manifests/site.pp -------------------------------------------------------------------------------- /boxes/centos/puppet/manifests/yum_installoptions.pp: -------------------------------------------------------------------------------- 1 | package {'guile': 2 | install_options => ['--nogpgcheck' ] 3 | } 4 | -------------------------------------------------------------------------------- /boxes/centos/puppet/manifests/yum_provides.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/puppet/manifests/yum_provides.pp -------------------------------------------------------------------------------- /boxes/centos/shell/InstallUTF8Package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/shell/InstallUTF8Package.sh -------------------------------------------------------------------------------- /boxes/centos/shell/LocalDevPrep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/shell/LocalDevPrep.sh -------------------------------------------------------------------------------- /boxes/centos/shell/PrepareRHEL6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/shell/PrepareRHEL6.sh -------------------------------------------------------------------------------- /boxes/centos/shell/PuppetInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/shell/PuppetInstall.sh -------------------------------------------------------------------------------- /boxes/centos/shell/ReplacePuppetWithDev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/shell/ReplacePuppetWithDev.sh -------------------------------------------------------------------------------- /boxes/centos/shell/UpdateRuby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/shell/UpdateRuby.sh -------------------------------------------------------------------------------- /boxes/centos/shell/more_cowbell-1.0-1.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/centos/shell/more_cowbell-1.0-1.noarch.rpm -------------------------------------------------------------------------------- /boxes/chocolatey/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/chocolatey/Vagrantfile -------------------------------------------------------------------------------- /boxes/chocolatey/shell/InstallChocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/chocolatey/shell/InstallChocolatey.ps1 -------------------------------------------------------------------------------- /boxes/chocolatey/shell/InstallNet4.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/chocolatey/shell/InstallNet4.ps1 -------------------------------------------------------------------------------- /boxes/chocolatey/shell/SmokeCommands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/chocolatey/shell/SmokeCommands.ps1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/ReadMe.md -------------------------------------------------------------------------------- /boxes/microsoft-dsc/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/Vagrantfile -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/Disable-LCM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/Disable-LCM.ps1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/Disabled/localhost.meta.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/Disabled/localhost.meta.mof -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/Enable-LCM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/Enable-LCM.ps1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/Enabled/localhost.meta.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/Enabled/localhost.meta.mof -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/GetAllResourcesInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/GetAllResourcesInfo.ps1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/ModOverrides/xDismFeature/DSCResources/MSFT_xDismFeature/MSFT_xDismFeature.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/ModOverrides/xDismFeature/DSCResources/MSFT_xDismFeature/MSFT_xDismFeature.psm1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/ModOverrides/xDismFeature/DSCResources/MSFT_xDismFeature/MSFT_xDismFeature.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/ModOverrides/xDismFeature/DSCResources/MSFT_xDismFeature/MSFT_xDismFeature.schema.mof -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/ModOverrides/xDismFeature/xDismFeature.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/ModOverrides/xDismFeature/xDismFeature.psd1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/ModOverrides/xDismFeature/xDismFeature_Documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/ModOverrides/xDismFeature/xDismFeature_Documentation.html -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/PathUpdates/localhost.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/PathUpdates/localhost.mof -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/Set-LCMDebug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/Set-LCMDebug.ps1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/Test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/Test.ps1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/invoke-resource-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/invoke-resource-tests.ps1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/putty-0.63-installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/putty-0.63-installer.exe -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/run-dsc-configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/run-dsc-configuration.ps1 -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/test.zip -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/zLogs_InvokeDSCResource_Times.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/zLogs_InvokeDSCResource_Times.log -------------------------------------------------------------------------------- /boxes/microsoft-dsc/powershelldsc/zLogs_StartDSCConfiguration_Times.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/powershelldsc/zLogs_StartDSCConfiguration_Times.log -------------------------------------------------------------------------------- /boxes/microsoft-dsc/puppet/PuppetFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/puppet/PuppetFile -------------------------------------------------------------------------------- /boxes/microsoft-dsc/puppet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/puppet/ReadMe.md -------------------------------------------------------------------------------- /boxes/microsoft-dsc/puppet/manifests/dsc.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/puppet/manifests/dsc.pp -------------------------------------------------------------------------------- /boxes/microsoft-dsc/puppet/manifests/empty.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boxes/microsoft-dsc/puppet/manifests/presentation.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/puppet/manifests/presentation.pp -------------------------------------------------------------------------------- /boxes/microsoft-dsc/puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/puppet/manifests/site.pp -------------------------------------------------------------------------------- /boxes/microsoft-dsc/puppet/modules/ReadMe.md: -------------------------------------------------------------------------------- 1 | Everything here is ignored. -------------------------------------------------------------------------------- /boxes/microsoft-dsc/shell/SetupDSCComponents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/microsoft-dsc/shell/SetupDSCComponents.ps1 -------------------------------------------------------------------------------- /boxes/nano/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/nano/Vagrantfile -------------------------------------------------------------------------------- /boxes/shared/puppet/manifests/chocolatey_provider_tests.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/manifests/chocolatey_provider_tests.pp -------------------------------------------------------------------------------- /boxes/shared/puppet/manifests/pup1389.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/manifests/pup1389.pp -------------------------------------------------------------------------------- /boxes/shared/puppet/manifests/puppet_upgrade.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/manifests/puppet_upgrade.pp -------------------------------------------------------------------------------- /boxes/shared/puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/manifests/site.pp -------------------------------------------------------------------------------- /boxes/shared/puppet/modules/pup1389/files/jenkins-slave.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/modules/pup1389/files/jenkins-slave.exe -------------------------------------------------------------------------------- /boxes/shared/puppet/modules/pup1389/templates/jenkins-slave.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/modules/pup1389/templates/jenkins-slave.erb -------------------------------------------------------------------------------- /boxes/shared/puppet/modules/pup1389/templates/jenkins-slave.exe.config.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/modules/pup1389/templates/jenkins-slave.exe.config.erb -------------------------------------------------------------------------------- /boxes/shared/puppet/modules/pup1389/templates/jenkins-slave.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/modules/pup1389/templates/jenkins-slave.xml.erb -------------------------------------------------------------------------------- /boxes/shared/puppet/modules/pup1389/templates/jenkinsUrlFile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/modules/pup1389/templates/jenkinsUrlFile.erb -------------------------------------------------------------------------------- /boxes/shared/puppet/modules/pup1389/templates/proxy.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/puppet/modules/pup1389/templates/proxy.xml.erb -------------------------------------------------------------------------------- /boxes/shared/resources/certs/geotrust.global.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/resources/certs/geotrust.global.pem -------------------------------------------------------------------------------- /boxes/shared/resources/certs/usertrust.network.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/resources/certs/usertrust.network.pem -------------------------------------------------------------------------------- /boxes/shared/resources/packages/installers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/resources/packages/installers/Readme.md -------------------------------------------------------------------------------- /boxes/shared/shell/InstallChocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/InstallChocolatey.ps1 -------------------------------------------------------------------------------- /boxes/shared/shell/InstallNet4.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/InstallNet4.ps1 -------------------------------------------------------------------------------- /boxes/shared/shell/InstallPuppet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/InstallPuppet.ps1 -------------------------------------------------------------------------------- /boxes/shared/shell/InstallPuppetFromMSI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/InstallPuppetFromMSI.ps1 -------------------------------------------------------------------------------- /boxes/shared/shell/LocalDevPrep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/LocalDevPrep.ps1 -------------------------------------------------------------------------------- /boxes/shared/shell/NotifyGuiAppsOfEnvironmentChanges.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/NotifyGuiAppsOfEnvironmentChanges.ps1 -------------------------------------------------------------------------------- /boxes/shared/shell/PreparePuppetProvisioner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/PreparePuppetProvisioner.ps1 -------------------------------------------------------------------------------- /boxes/shared/shell/PrepareWindows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/PrepareWindows.ps1 -------------------------------------------------------------------------------- /boxes/shared/shell/PuppetLabs_Windows_SupportScript.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/PuppetLabs_Windows_SupportScript.cmd -------------------------------------------------------------------------------- /boxes/shared/shell/ReplaceInstalledPuppetWithDev.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/ReplaceInstalledPuppetWithDev.ps1 -------------------------------------------------------------------------------- /boxes/shared/shell/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/config.yml -------------------------------------------------------------------------------- /boxes/shared/shell/encode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/encode.rb -------------------------------------------------------------------------------- /boxes/shared/shell/main.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/main.cmd -------------------------------------------------------------------------------- /boxes/shared/shell/puppet.run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/puppet.run.cmd -------------------------------------------------------------------------------- /boxes/shared/shell/windowsprep.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/shared/shell/windowsprep.cmd -------------------------------------------------------------------------------- /boxes/smoketest-puppet/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/Vagrantfile -------------------------------------------------------------------------------- /boxes/smoketest-puppet/puppet/agent/acl_module_tests.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/puppet/agent/acl_module_tests.pp -------------------------------------------------------------------------------- /boxes/smoketest-puppet/puppet/agent/module_tests.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/puppet/agent/module_tests.pp -------------------------------------------------------------------------------- /boxes/smoketest-puppet/puppet/agent/powershell_module_tests.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/puppet/agent/powershell_module_tests.pp -------------------------------------------------------------------------------- /boxes/smoketest-puppet/puppet/agent/reboot_module_tests.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/puppet/agent/reboot_module_tests.pp -------------------------------------------------------------------------------- /boxes/smoketest-puppet/puppet/agent/registry_module_tests.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/puppet/agent/registry_module_tests.pp -------------------------------------------------------------------------------- /boxes/smoketest-puppet/puppet/master/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/puppet/master/manifests/site.pp -------------------------------------------------------------------------------- /boxes/smoketest-puppet/shell/linux/PrepareRHEL6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/shell/linux/PrepareRHEL6.sh -------------------------------------------------------------------------------- /boxes/smoketest-puppet/shell/linux/PrepareUbuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/shell/linux/PrepareUbuntu.sh -------------------------------------------------------------------------------- /boxes/smoketest-puppet/shell/linux/PuppetInstallCentOS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/shell/linux/PuppetInstallCentOS.sh -------------------------------------------------------------------------------- /boxes/smoketest-puppet/shell/linux/PuppetInstallMaster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/shell/linux/PuppetInstallMaster.sh -------------------------------------------------------------------------------- /boxes/smoketest-puppet/shell/linux/PuppetInstallUbuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/shell/linux/PuppetInstallUbuntu.sh -------------------------------------------------------------------------------- /boxes/smoketest-puppet/shell/linux/SetPuppetMasterHost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/shell/linux/SetPuppetMasterHost.sh -------------------------------------------------------------------------------- /boxes/smoketest-puppet/shell/windows/Link_Code_Module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/shell/windows/Link_Code_Module.ps1 -------------------------------------------------------------------------------- /boxes/smoketest-puppet/shell/windows/SmokeCommands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/smoketest-puppet/shell/windows/SmokeCommands.ps1 -------------------------------------------------------------------------------- /boxes/ubuntu-14.04-x64/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-14.04-x64/Vagrantfile -------------------------------------------------------------------------------- /boxes/ubuntu-14.04-x64/puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-14.04-x64/puppet/manifests/site.pp -------------------------------------------------------------------------------- /boxes/ubuntu-14.04-x64/shell/InstallModules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-14.04-x64/shell/InstallModules.sh -------------------------------------------------------------------------------- /boxes/ubuntu-14.04-x64/shell/PrepareBox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-14.04-x64/shell/PrepareBox.sh -------------------------------------------------------------------------------- /boxes/ubuntu-14.04-x64/shell/PuppetInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-14.04-x64/shell/PuppetInstall.sh -------------------------------------------------------------------------------- /boxes/ubuntu-14.04-x64/shell/ReplacePuppetWithDev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-14.04-x64/shell/ReplacePuppetWithDev.sh -------------------------------------------------------------------------------- /boxes/ubuntu-14.04-x64/shell/UpdateRuby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-14.04-x64/shell/UpdateRuby.sh -------------------------------------------------------------------------------- /boxes/ubuntu-server-12.04.2-x64/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-server-12.04.2-x64/Vagrantfile -------------------------------------------------------------------------------- /boxes/ubuntu-server-12.04.2-x64/puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-server-12.04.2-x64/puppet/manifests/site.pp -------------------------------------------------------------------------------- /boxes/ubuntu-server-12.04.2-x64/shell/InstallModules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-server-12.04.2-x64/shell/InstallModules.sh -------------------------------------------------------------------------------- /boxes/ubuntu-server-12.04.2-x64/shell/PrepareBox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-server-12.04.2-x64/shell/PrepareBox.sh -------------------------------------------------------------------------------- /boxes/ubuntu-server-12.04.2-x64/shell/PuppetInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-server-12.04.2-x64/shell/PuppetInstall.sh -------------------------------------------------------------------------------- /boxes/ubuntu-server-12.04.2-x64/shell/ReplacePuppetWithDev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-server-12.04.2-x64/shell/ReplacePuppetWithDev.sh -------------------------------------------------------------------------------- /boxes/ubuntu-server-12.04.2-x64/shell/UpdateRuby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/ubuntu-server-12.04.2-x64/shell/UpdateRuby.sh -------------------------------------------------------------------------------- /boxes/win10x64-vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win10x64-vagrant/Vagrantfile -------------------------------------------------------------------------------- /boxes/win10x64-vagrant/puppet/PuppetFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win10x64-vagrant/puppet/PuppetFile -------------------------------------------------------------------------------- /boxes/win10x64-vagrant/puppet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win10x64-vagrant/puppet/ReadMe.md -------------------------------------------------------------------------------- /boxes/win10x64-vagrant/puppet/manifests/dsc.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win10x64-vagrant/puppet/manifests/dsc.pp -------------------------------------------------------------------------------- /boxes/win10x64-vagrant/puppet/manifests/empty.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boxes/win10x64-vagrant/puppet/manifests/provision.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win10x64-vagrant/puppet/manifests/provision.pp -------------------------------------------------------------------------------- /boxes/win2003x86-vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2003x86-vagrant/Vagrantfile -------------------------------------------------------------------------------- /boxes/win2003x86-vagrant/puppet/PuppetFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2003x86-vagrant/puppet/PuppetFile -------------------------------------------------------------------------------- /boxes/win2003x86-vagrant/puppet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2003x86-vagrant/puppet/ReadMe.md -------------------------------------------------------------------------------- /boxes/win2003x86-vagrant/puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2003x86-vagrant/puppet/manifests/site.pp -------------------------------------------------------------------------------- /boxes/win2003x86-vagrant/puppet/modules/ReadMe.md: -------------------------------------------------------------------------------- 1 | Everything here is ignored. -------------------------------------------------------------------------------- /boxes/win2008r2x64-vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2008r2x64-vagrant/Vagrantfile -------------------------------------------------------------------------------- /boxes/win2008r2x64-vagrant/puppet/PuppetFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2008r2x64-vagrant/puppet/PuppetFile -------------------------------------------------------------------------------- /boxes/win2008r2x64-vagrant/puppet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2008r2x64-vagrant/puppet/ReadMe.md -------------------------------------------------------------------------------- /boxes/win2008r2x64-vagrant/puppet/manifests/empty.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boxes/win2008r2x64-vagrant/puppet/manifests/provision.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2008r2x64-vagrant/puppet/manifests/provision.pp -------------------------------------------------------------------------------- /boxes/win2008r2x64-vagrant/puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2008r2x64-vagrant/puppet/manifests/site.pp -------------------------------------------------------------------------------- /boxes/win2008r2x64-vagrant/puppet/manifests/templates/setup_env.bat.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2008r2x64-vagrant/puppet/manifests/templates/setup_env.bat.erb -------------------------------------------------------------------------------- /boxes/win2008r2x64-vagrant/puppet/modules/ReadMe.md: -------------------------------------------------------------------------------- 1 | Everything here is ignored. -------------------------------------------------------------------------------- /boxes/win2012r2x64-vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2012r2x64-vagrant/Vagrantfile -------------------------------------------------------------------------------- /boxes/win2012r2x64-vagrant/puppet/PuppetFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2012r2x64-vagrant/puppet/PuppetFile -------------------------------------------------------------------------------- /boxes/win2012r2x64-vagrant/puppet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2012r2x64-vagrant/puppet/ReadMe.md -------------------------------------------------------------------------------- /boxes/win2012r2x64-vagrant/puppet/manifests/empty.pp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boxes/win2012r2x64-vagrant/puppet/manifests/provision.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2012r2x64-vagrant/puppet/manifests/provision.pp -------------------------------------------------------------------------------- /boxes/win2012r2x64-vagrant/puppet/manifests/provision2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2012r2x64-vagrant/puppet/manifests/provision2.pp -------------------------------------------------------------------------------- /boxes/win2012r2x64-vagrant/puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2012r2x64-vagrant/puppet/manifests/site.pp -------------------------------------------------------------------------------- /boxes/win2012r2x64-vagrant/puppet/manifests/templates/setup_env.bat.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win2012r2x64-vagrant/puppet/manifests/templates/setup_env.bat.erb -------------------------------------------------------------------------------- /boxes/win2012r2x64-vagrant/puppet/modules/ReadMe.md: -------------------------------------------------------------------------------- 1 | Everything here is ignored. -------------------------------------------------------------------------------- /boxes/win7x64pro-vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win7x64pro-vagrant/Vagrantfile -------------------------------------------------------------------------------- /boxes/win7x64pro-vagrant/puppet/PuppetFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win7x64pro-vagrant/puppet/PuppetFile -------------------------------------------------------------------------------- /boxes/win7x64pro-vagrant/puppet/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/HEAD/boxes/win7x64pro-vagrant/puppet/manifests/site.pp --------------------------------------------------------------------------------