- Windows 10 ISO
- VMware Fusion
- WinToUSB
- Boot Camp Drivers
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
# el7-options.cfg | |
# Commands and Options. | |
############################################################################### | |
# Required options: | |
# See the kickstart section of the install docs for this distro for more details | |
# authconfig | |
# bootloader | |
# keyboard | |
# lang | |
# part or partition |
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
diff --git /opt/chefdk/embedded/lib/ruby/gems/2.4.0/gems/kitchen-vcenter-2.6.0/lib/support/clone_vm.rb /opt/chefdk/embedded/lib/ruby/gems/2.4.0/gems/kitchen-vcenter-2.6.0/lib/support/clone_vm.rb | |
index d73c4cc..e672f0a 100644 | |
--- /opt/chefdk/embedded/lib/ruby/gems/2.4.0/gems/kitchen-vcenter-2.6.0/lib/support/clone_vm.rb | |
+++ /opt/chefdk/embedded/lib/ruby/gems/2.4.0/gems/kitchen-vcenter-2.6.0/lib/support/clone_vm.rb | |
@@ -395,15 +395,34 @@ class Support | |
options[:clone_type] == :full | |
end | |
+ def root_folder | |
+ vim.serviceInstance.content.rootFolder |
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
yum shell -y <<eof | |
remove chefdk | |
reinstall chef | |
transaction solve | |
transaction run | |
eof |
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
diff --git a/lib/kitchen/driver/azure_credentials.rb b/lib/kitchen/driver/azure_credentials.rb | |
index 0d38784..4def42c 100644 | |
--- a/lib/kitchen/driver/azure_credentials.rb | |
+++ b/lib/kitchen/driver/azure_credentials.rb | |
@@ -28,7 +28,7 @@ module Kitchen | |
if File.file?(config_file) | |
@credentials = IniFile.load(File.expand_path(config_file)) | |
else | |
- warn "#{CONFIG_PATH} was not found or not accessible." | |
+ warn "#{CONFIG_PATH} was not found or not accessible. Will use environment variables or MSI." |
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
{ | |
"title": "Remote Desktop", | |
"rules": [ | |
{ | |
"description": "Swap command and control", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "left_control", |
Chef Progress has already begun working on a fix that will be released in the next Chef Infra Server release, see: chef/chef-server#2992
If for some reason you can't upgrade soon here is an alternative. I highly recommend upgrading instead of using this fix. This fix is meant to be a stop gap solution.
This only works if you're using a version of Chef Infra Server that ships with elasticsearch. If you're using an old version of Chef Infra Server that is still using solr this won't work.
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
Policyfile.rb - Describe how you want Chef Infra Client to build your system. | |
# | |
# For more information on the Policyfile feature, visit | |
# https://docs.chef.io/policyfile/ | |
# A name that describes what the system you're building with Chef does. | |
name 'testd' | |
# Where to find external cookbooks: | |
default_source :chef_server, "https://api.chef.io/organizations/wschef" |
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
tap "databricks/tap" | |
tap "go-task/tap" | |
tap "homebrew/bundle" | |
brew "ack" | |
brew "readline" | |
brew "xz" | |
brew "ansible" | |
brew "autoconf" | |
brew "automake" | |
brew "awscli" |
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
{ | |
"name": "app-name", | |
"private": true, | |
"scripts": { | |
"dev": "react-env && next dev", | |
"build": "next build", | |
"start": "next start", | |
"test": "TZ=utc jest --silent", | |
"test:verbose": "TZ=utc jest", | |
"test:watch": "TZ=utc jest --watch", |
OlderNewer