Last active
December 26, 2018 19:22
-
-
Save joshoohaah/63b433cb0b4adb11988b2ff67f513ce1 to your computer and use it in GitHub Desktop.
Basic Tooling installation & Deployment of a dev workstation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
packages = %w[ git conemu 7zip] | |
packages.each do |package_name| | |
chocolatey_package package_name | |
end | |
packages = %w[boxstarter] | |
packages.each do |package_name| | |
chocolatey_package package_name | |
end | |
gems = %w[kitchen-pester kitchen-hyperv kitchen-dsc kitchen-azurerm azure-credentials pry pry-byebug pry-stack_explorer appbundle-updater] | |
gems.each do |gem| | |
chef_gem gem do | |
compile_time false if respond_to?(:compile_time) | |
end | |
end | |
execute 'chef generate repo working_repo -p' do | |
cwd 'c:/' | |
end | |
execute 'chef generate repo testing_repo -p' do | |
cwd 'c:/' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment