chef 12.13.37 → 12.14.60

Sign up to get free protection for your applications and to get access to all the features.
Files changed (338) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +48 -95
  3. data/Gemfile +6 -1
  4. data/README.md +9 -11
  5. data/VERSION +1 -1
  6. data/acceptance/.shared/kitchen_acceptance/.kitchen.ec2.yml +0 -1
  7. data/acceptance/Gemfile +4 -7
  8. data/acceptance/Gemfile.lock +59 -92
  9. data/acceptance/basics/test/integration/helpers/serverspec/Gemfile +8 -0
  10. data/acceptance/data-collector/test/integration/helpers/serverspec/Gemfile +8 -0
  11. data/acceptance/fips/test/integration/fips-integration/serverspec/Gemfile +6 -0
  12. data/acceptance/fips/test/integration/fips-unit-functional/serverspec/Gemfile +4 -0
  13. data/chef.gemspec +3 -2
  14. data/lib/chef/application/client.rb +4 -4
  15. data/lib/chef/application/solo.rb +2 -2
  16. data/lib/chef/chef_fs/command_line.rb +36 -34
  17. data/lib/chef/chef_fs/data_handler/data_handler_base.rb +2 -2
  18. data/lib/chef/chef_fs/file_pattern.rb +1 -1
  19. data/lib/chef/chef_fs/file_system.rb +139 -137
  20. data/lib/chef/chef_fs/parallelizer/parallel_enumerable.rb +2 -6
  21. data/lib/chef/cookbook/cookbook_version_loader.rb +27 -22
  22. data/lib/chef/cookbook/metadata.rb +1 -1
  23. data/lib/chef/cookbook/synchronizer.rb +3 -3
  24. data/lib/chef/cookbook_site_streaming_uploader.rb +3 -3
  25. data/lib/chef/cookbook_uploader.rb +1 -1
  26. data/lib/chef/cookbook_version.rb +6 -6
  27. data/lib/chef/dsl/powershell.rb +1 -1
  28. data/lib/chef/event_dispatch/base.rb +2 -2
  29. data/lib/chef/exceptions.rb +1 -1
  30. data/lib/chef/file_cache.rb +1 -1
  31. data/lib/chef/formatters/base.rb +2 -2
  32. data/lib/chef/formatters/doc.rb +2 -2
  33. data/lib/chef/http.rb +48 -18
  34. data/lib/chef/http/auth_credentials.rb +1 -1
  35. data/lib/chef/http/basic_client.rb +11 -2
  36. data/lib/chef/http/socketless_chef_zero_client.rb +2 -2
  37. data/lib/chef/key.rb +55 -56
  38. data/lib/chef/knife.rb +70 -61
  39. data/lib/chef/knife/client_delete.rb +2 -2
  40. data/lib/chef/knife/cookbook_bulk_delete.rb +1 -1
  41. data/lib/chef/knife/cookbook_show.rb +1 -1
  42. data/lib/chef/knife/core/gem_glob_loader.rb +3 -3
  43. data/lib/chef/knife/search.rb +2 -2
  44. data/lib/chef/knife/ssh.rb +19 -21
  45. data/lib/chef/knife/status.rb +2 -2
  46. data/lib/chef/mixin/command/unix.rb +2 -2
  47. data/lib/chef/mixin/powershell_type_coercions.rb +1 -1
  48. data/lib/chef/mixin/properties.rb +3 -0
  49. data/lib/chef/mixin/securable.rb +2 -2
  50. data/lib/chef/mixin/shell_out.rb +30 -0
  51. data/lib/chef/mixin/uris.rb +2 -1
  52. data/lib/chef/mixin/windows_architecture_helper.rb +3 -4
  53. data/lib/chef/monkey_patches/webrick-utils.rb +2 -2
  54. data/lib/chef/monologger.rb +1 -1
  55. data/lib/chef/node.rb +2 -2
  56. data/lib/chef/node/attribute.rb +3 -3
  57. data/lib/chef/platform/provider_mapping.rb +5 -2
  58. data/lib/chef/property.rb +14 -3
  59. data/lib/chef/provider/apt_repository.rb +3 -7
  60. data/lib/chef/provider/apt_update.rb +4 -6
  61. data/lib/chef/provider/cron.rb +1 -2
  62. data/lib/chef/provider/dsc_script.rb +4 -4
  63. data/lib/chef/provider/group/usermod.rb +1 -1
  64. data/lib/chef/provider/link.rb +10 -3
  65. data/lib/chef/provider/osx_profile.rb +10 -10
  66. data/lib/chef/provider/package.rb +2 -12
  67. data/lib/chef/provider/package/rubygems.rb +17 -16
  68. data/lib/chef/provider/package/windows.rb +2 -0
  69. data/lib/chef/provider/package/windows/exe.rb +1 -1
  70. data/lib/chef/provider/package/windows/registry_uninstall_entry.rb +0 -2
  71. data/lib/chef/provider/package/yum/rpm_utils.rb +8 -8
  72. data/lib/chef/provider/package/yum/yum_cache.rb +1 -1
  73. data/lib/chef/provider/remote_file/ftp.rb +2 -2
  74. data/lib/chef/provider/remote_file/sftp.rb +2 -2
  75. data/lib/chef/provider/service/debian.rb +2 -2
  76. data/lib/chef/provider/service/simple.rb +4 -3
  77. data/lib/chef/provider/service/solaris.rb +1 -1
  78. data/lib/chef/provider/service/systemd.rb +2 -2
  79. data/lib/chef/provider/service/upstart.rb +8 -5
  80. data/lib/chef/provider/support/yum_repo.erb +125 -0
  81. data/lib/chef/provider/systemd_unit.rb +11 -2
  82. data/lib/chef/provider/template_finder.rb +1 -1
  83. data/lib/chef/provider/user.rb +20 -16
  84. data/lib/chef/provider/user/aix.rb +5 -2
  85. data/lib/chef/provider/user/dscl.rb +1 -0
  86. data/lib/chef/provider/user/linux.rb +128 -0
  87. data/lib/chef/provider/user/pw.rb +2 -1
  88. data/lib/chef/provider/user/solaris.rb +3 -2
  89. data/lib/chef/provider/user/useradd.rb +5 -4
  90. data/lib/chef/provider/user/windows.rb +1 -1
  91. data/lib/chef/provider/windows_script.rb +5 -2
  92. data/lib/chef/provider/yum_repository.rb +121 -0
  93. data/lib/chef/providers.rb +4 -2
  94. data/lib/chef/resource.rb +7 -9
  95. data/lib/chef/resource/conditional.rb +9 -1
  96. data/lib/chef/resource/launchd.rb +1 -1
  97. data/lib/chef/resource/user.rb +3 -3
  98. data/lib/chef/resource/user/aix_user.rb +31 -0
  99. data/lib/chef/resource/user/dscl_user.rb +31 -0
  100. data/lib/chef/resource/user/linux_user.rb +51 -0
  101. data/lib/chef/resource/user/pw_user.rb +31 -0
  102. data/lib/chef/resource/user/solaris_user.rb +31 -0
  103. data/lib/chef/resource/user/windows_user.rb +31 -0
  104. data/lib/chef/resource/yum_package.rb +13 -12
  105. data/lib/chef/resource/yum_repository.rb +76 -0
  106. data/lib/chef/resource_builder.rb +1 -1
  107. data/lib/chef/resource_collection/stepable_iterator.rb +1 -3
  108. data/lib/chef/resource_reporter.rb +5 -5
  109. data/lib/chef/resources.rb +7 -0
  110. data/lib/chef/run_context.rb +5 -3
  111. data/lib/chef/run_context/cookbook_compiler.rb +3 -2
  112. data/lib/chef/run_list.rb +2 -2
  113. data/lib/chef/search/query.rb +11 -8
  114. data/lib/chef/shell/ext.rb +2 -2
  115. data/lib/chef/shell/shell_session.rb +1 -1
  116. data/lib/chef/util/dsc/configuration_generator.rb +1 -1
  117. data/lib/chef/util/powershell/cmdlet.rb +5 -2
  118. data/lib/chef/util/selinux.rb +1 -1
  119. data/lib/chef/version.rb +1 -1
  120. data/lib/chef/version_class.rb +2 -2
  121. data/lib/chef/version_constraint.rb +2 -2
  122. data/lib/chef/win32/api/error.rb +2 -2
  123. data/lib/chef/win32/api/net.rb +1 -1
  124. data/lib/chef/win32/eventlog.rb +1 -1
  125. data/lib/chef/win32/net.rb +1 -1
  126. data/lib/chef/win32/security/sid.rb +1 -1
  127. data/spec/functional/assets/testchefsubsys +2 -3
  128. data/spec/functional/event_loggers/windows_eventlog_spec.rb +11 -8
  129. data/spec/functional/file_content_management/deploy_strategies_spec.rb +1 -1
  130. data/spec/functional/http/simple_spec.rb +2 -2
  131. data/spec/functional/knife/cookbook_delete_spec.rb +5 -5
  132. data/spec/functional/knife/exec_spec.rb +6 -6
  133. data/spec/functional/knife/ssh_spec.rb +4 -4
  134. data/spec/functional/notifications_spec.rb +2 -2
  135. data/spec/functional/provider/whyrun_safe_ruby_block_spec.rb +2 -2
  136. data/spec/functional/rebooter_spec.rb +5 -5
  137. data/spec/functional/resource/bash_spec.rb +2 -2
  138. data/spec/functional/resource/deploy_revision_spec.rb +1 -1
  139. data/spec/functional/resource/dpkg_package_spec.rb +2 -2
  140. data/spec/functional/resource/dsc_resource_spec.rb +5 -5
  141. data/spec/functional/resource/dsc_script_spec.rb +27 -22
  142. data/spec/functional/resource/env_spec.rb +4 -4
  143. data/spec/functional/resource/execute_spec.rb +4 -4
  144. data/spec/functional/resource/group_spec.rb +20 -8
  145. data/spec/functional/resource/link_spec.rb +34 -0
  146. data/spec/functional/resource/ohai_spec.rb +6 -6
  147. data/spec/functional/resource/reboot_spec.rb +2 -2
  148. data/spec/functional/resource/remote_file_spec.rb +16 -7
  149. data/spec/functional/resource/user/dscl_spec.rb +3 -3
  150. data/spec/functional/resource/user/useradd_spec.rb +32 -26
  151. data/spec/functional/resource/windows_service_spec.rb +15 -15
  152. data/spec/functional/rest_spec.rb +2 -2
  153. data/spec/functional/run_lock_spec.rb +9 -9
  154. data/spec/functional/tiny_server_spec.rb +9 -8
  155. data/spec/functional/win32/crypto_spec.rb +1 -1
  156. data/spec/functional/win32/security_spec.rb +8 -8
  157. data/spec/integration/client/client_spec.rb +6 -4
  158. data/spec/integration/knife/chef_repo_path_spec.rb +70 -1
  159. data/spec/integration/knife/upload_spec.rb +1 -1
  160. data/spec/integration/recipes/lwrp_inline_resources_spec.rb +6 -6
  161. data/spec/integration/recipes/noop_resource_spec.rb +4 -4
  162. data/spec/integration/recipes/provider_choice.rb +3 -3
  163. data/spec/integration/recipes/recipe_dsl_spec.rb +318 -317
  164. data/spec/integration/recipes/resource_action_spec.rb +50 -54
  165. data/spec/integration/recipes/resource_converge_if_changed_spec.rb +34 -34
  166. data/spec/integration/recipes/resource_load_spec.rb +24 -24
  167. data/spec/integration/solo/solo_spec.rb +21 -30
  168. data/spec/scripts/ssl-serve.rb +1 -1
  169. data/spec/spec_helper.rb +1 -0
  170. data/spec/stress/win32/security_spec.rb +4 -4
  171. data/spec/support/chef_helpers.rb +22 -0
  172. data/spec/support/platform_helpers.rb +5 -1
  173. data/spec/support/shared/context/client.rb +3 -2
  174. data/spec/support/shared/functional/file_resource.rb +5 -4
  175. data/spec/support/shared/functional/http.rb +16 -16
  176. data/spec/support/shared/functional/securable_resource.rb +5 -5
  177. data/spec/support/shared/functional/win32_service.rb +5 -7
  178. data/spec/support/shared/integration/app_server_support.rb +1 -3
  179. data/spec/support/shared/integration/knife_support.rb +0 -2
  180. data/spec/support/shared/shared_examples.rb +2 -2
  181. data/spec/support/shared/unit/api_versioning.rb +2 -2
  182. data/spec/support/shared/unit/application_dot_d.rb +9 -6
  183. data/spec/support/shared/unit/provider/file.rb +2 -2
  184. data/spec/support/shared/unit/provider/useradd_based_user_provider.rb +49 -80
  185. data/spec/support/shared/unit/resource/static_provider_resolution.rb +2 -2
  186. data/spec/support/shared/unit/script_resource.rb +4 -4
  187. data/spec/support/shared/unit/user_and_client_shared.rb +4 -4
  188. data/spec/tiny_server.rb +51 -66
  189. data/spec/unit/api_client_v1_spec.rb +2 -2
  190. data/spec/unit/application_spec.rb +1 -1
  191. data/spec/unit/audit/audit_event_proxy_spec.rb +34 -27
  192. data/spec/unit/audit/audit_reporter_spec.rb +32 -23
  193. data/spec/unit/audit/control_group_data_spec.rb +19 -14
  194. data/spec/unit/chef_class_spec.rb +1 -1
  195. data/spec/unit/chef_fs/data_handler/group_handler_spec.rb +1 -1
  196. data/spec/unit/chef_fs/diff_spec.rb +4 -4
  197. data/spec/unit/chef_fs/file_system/operation_failed_error_spec.rb +4 -4
  198. data/spec/unit/chef_fs/file_system_spec.rb +2 -2
  199. data/spec/unit/chef_fs/parallelizer.rb +5 -7
  200. data/spec/unit/cookbook/metadata_spec.rb +98 -98
  201. data/spec/unit/cookbook/synchronizer_spec.rb +7 -0
  202. data/spec/unit/cookbook_loader_spec.rb +24 -24
  203. data/spec/unit/cookbook_version_file_specificity_spec.rb +8 -8
  204. data/spec/unit/daemon_spec.rb +1 -1
  205. data/spec/unit/data_bag_item_spec.rb +18 -18
  206. data/spec/unit/data_bag_spec.rb +2 -2
  207. data/spec/unit/data_collector/messages/helpers_spec.rb +9 -9
  208. data/spec/unit/data_collector/messages_spec.rb +2 -2
  209. data/spec/unit/data_collector_spec.rb +19 -19
  210. data/spec/unit/dsl/audit_spec.rb +3 -3
  211. data/spec/unit/dsl/data_query_spec.rb +3 -2
  212. data/spec/unit/dsl/declare_resource_spec.rb +10 -10
  213. data/spec/unit/encrypted_data_bag_item/check_encrypted_spec.rb +3 -2
  214. data/spec/unit/encrypted_data_bag_item_spec.rb +3 -2
  215. data/spec/unit/environment_spec.rb +6 -6
  216. data/spec/unit/event_dispatch/dispatcher_spec.rb +2 -2
  217. data/spec/unit/file_access_control_spec.rb +3 -3
  218. data/spec/unit/file_content_management/tempfile_spec.rb +2 -2
  219. data/spec/unit/formatters/error_inspectors/api_error_formatting_spec.rb +2 -2
  220. data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +2 -2
  221. data/spec/unit/http/basic_client_spec.rb +20 -0
  222. data/spec/unit/http/validate_content_length_spec.rb +8 -8
  223. data/spec/unit/http_spec.rb +14 -0
  224. data/spec/unit/knife/bootstrap/chef_vault_handler_spec.rb +2 -2
  225. data/spec/unit/knife/bootstrap/client_builder_spec.rb +2 -2
  226. data/spec/unit/knife/bootstrap_spec.rb +8 -6
  227. data/spec/unit/knife/client_bulk_delete_spec.rb +8 -8
  228. data/spec/unit/knife/client_edit_spec.rb +2 -2
  229. data/spec/unit/knife/configure_client_spec.rb +2 -2
  230. data/spec/unit/knife/cookbook_metadata_spec.rb +4 -4
  231. data/spec/unit/knife/cookbook_site_install_spec.rb +6 -5
  232. data/spec/unit/knife/cookbook_site_share_spec.rb +2 -2
  233. data/spec/unit/knife/core/hashed_command_loader_spec.rb +5 -4
  234. data/spec/unit/knife/core/node_editor_spec.rb +3 -3
  235. data/spec/unit/knife/core/ui_spec.rb +2 -2
  236. data/spec/unit/knife/data_bag_from_file_spec.rb +4 -3
  237. data/spec/unit/knife/data_bag_show_spec.rb +3 -2
  238. data/spec/unit/knife/key_create_spec.rb +14 -14
  239. data/spec/unit/knife/key_delete_spec.rb +2 -2
  240. data/spec/unit/knife/key_edit_spec.rb +16 -16
  241. data/spec/unit/knife/key_list_spec.rb +6 -6
  242. data/spec/unit/knife/key_show_spec.rb +4 -4
  243. data/spec/unit/knife/status_spec.rb +3 -2
  244. data/spec/unit/knife/user_create_spec.rb +4 -4
  245. data/spec/unit/knife_spec.rb +7 -6
  246. data/spec/unit/lwrp_spec.rb +6 -6
  247. data/spec/unit/mixin/api_version_request_handling_spec.rb +2 -2
  248. data/spec/unit/mixin/command_spec.rb +17 -14
  249. data/spec/unit/mixin/deprecation_spec.rb +1 -1
  250. data/spec/unit/mixin/homebrew_user_spec.rb +2 -2
  251. data/spec/unit/mixin/params_validate_spec.rb +53 -52
  252. data/spec/unit/mixin/powershell_out_spec.rb +2 -2
  253. data/spec/unit/mixin/powershell_type_coercions_spec.rb +2 -2
  254. data/spec/unit/mixin/shell_out_spec.rb +1 -1
  255. data/spec/unit/mixin/xml_escape_spec.rb +3 -3
  256. data/spec/unit/node_spec.rb +2 -2
  257. data/spec/unit/platform/query_helpers_spec.rb +3 -3
  258. data/spec/unit/property_spec.rb +4 -4
  259. data/spec/unit/provider/cookbook_file_spec.rb +4 -4
  260. data/spec/unit/provider/cron/unix_spec.rb +4 -4
  261. data/spec/unit/provider/cron_spec.rb +2 -2
  262. data/spec/unit/provider/deploy_spec.rb +8 -8
  263. data/spec/unit/provider/dsc_resource_spec.rb +11 -10
  264. data/spec/unit/provider/dsc_script_spec.rb +9 -9
  265. data/spec/unit/provider/env/windows_spec.rb +8 -8
  266. data/spec/unit/provider/file/content_spec.rb +6 -6
  267. data/spec/unit/provider/file_spec.rb +4 -4
  268. data/spec/unit/provider/launchd_spec.rb +2 -1
  269. data/spec/unit/provider/link_spec.rb +155 -0
  270. data/spec/unit/provider/mount/mount_spec.rb +5 -5
  271. data/spec/unit/provider/mount/solaris_spec.rb +48 -48
  272. data/spec/unit/provider/osx_profile_spec.rb +6 -0
  273. data/spec/unit/provider/package/chocolatey_spec.rb +4 -4
  274. data/spec/unit/provider/package/freebsd/port_spec.rb +4 -4
  275. data/spec/unit/provider/package/rubygems_spec.rb +50 -44
  276. data/spec/unit/provider/package/windows/exe_spec.rb +9 -0
  277. data/spec/unit/provider/package/yum_spec.rb +61 -60
  278. data/spec/unit/provider/package_spec.rb +2 -2
  279. data/spec/unit/provider/powershell_script_spec.rb +4 -4
  280. data/spec/unit/provider/remote_directory_spec.rb +1 -1
  281. data/spec/unit/provider/remote_file/ftp_spec.rb +4 -4
  282. data/spec/unit/provider/remote_file/local_file_spec.rb +4 -2
  283. data/spec/unit/provider/remote_file/sftp_spec.rb +4 -4
  284. data/spec/unit/provider/remote_file_spec.rb +4 -4
  285. data/spec/unit/provider/script_spec.rb +4 -4
  286. data/spec/unit/provider/service/debian_service_spec.rb +4 -4
  287. data/spec/unit/provider/service/freebsd_service_spec.rb +12 -8
  288. data/spec/unit/provider/service/openbsd_service_spec.rb +12 -8
  289. data/spec/unit/provider/service/systemd_service_spec.rb +4 -4
  290. data/spec/unit/provider/service/upstart_service_spec.rb +27 -12
  291. data/spec/unit/provider/service/windows_spec.rb +10 -10
  292. data/spec/unit/provider/systemd_unit_spec.rb +2 -2
  293. data/spec/unit/provider/template/content_spec.rb +8 -8
  294. data/spec/unit/provider/template_spec.rb +8 -8
  295. data/spec/unit/provider/user/dscl_spec.rb +51 -51
  296. data/spec/unit/provider/user/linux_spec.rb +76 -0
  297. data/spec/unit/provider/user/pw_spec.rb +3 -6
  298. data/spec/unit/provider/user/solaris_spec.rb +5 -5
  299. data/spec/unit/provider/user/windows_spec.rb +3 -3
  300. data/spec/unit/provider/user_spec.rb +2 -2
  301. data/spec/unit/provider/yum_repository_spec.rb +35 -0
  302. data/spec/unit/provider_resolver_spec.rb +306 -264
  303. data/spec/unit/recipe_spec.rb +8 -7
  304. data/spec/unit/resource/apt_repository_spec.rb +4 -4
  305. data/spec/unit/resource/apt_update_spec.rb +4 -4
  306. data/spec/unit/resource/conditional_spec.rb +46 -0
  307. data/spec/unit/resource/dsc_resource_spec.rb +8 -8
  308. data/spec/unit/resource/dsc_script_spec.rb +4 -4
  309. data/spec/unit/resource/freebsd_package_spec.rb +6 -6
  310. data/spec/unit/resource/launchd_spec.rb +3 -2
  311. data/spec/unit/resource/osx_profile_spec.rb +3 -2
  312. data/spec/unit/resource/remote_file_spec.rb +6 -6
  313. data/spec/unit/resource/service_spec.rb +14 -14
  314. data/spec/unit/resource/user_spec.rb +1 -1
  315. data/spec/unit/resource/yum_repository_spec.rb +49 -0
  316. data/spec/unit/resource_collection_spec.rb +4 -4
  317. data/spec/unit/resource_definition_spec.rb +11 -11
  318. data/spec/unit/resource_reporter_spec.rb +4 -4
  319. data/spec/unit/resource_resolver_spec.rb +6 -6
  320. data/spec/unit/resource_spec.rb +36 -16
  321. data/spec/unit/run_context/child_run_context_spec.rb +4 -4
  322. data/spec/unit/run_context/cookbook_compiler_spec.rb +43 -1
  323. data/spec/unit/run_context_spec.rb +8 -8
  324. data/spec/unit/run_list/run_list_expansion_spec.rb +2 -2
  325. data/spec/unit/runner_spec.rb +2 -2
  326. data/spec/unit/search/query_spec.rb +15 -14
  327. data/spec/unit/user_v1_spec.rb +8 -8
  328. data/spec/unit/util/dsc/configuration_generator_spec.rb +12 -12
  329. data/spec/unit/util/dsc/local_configuration_manager_spec.rb +12 -9
  330. data/spec/unit/util/dsc/resource_store.rb +8 -6
  331. data/spec/unit/util/editor_spec.rb +6 -6
  332. data/spec/unit/util/powershell/cmdlet_spec.rb +10 -10
  333. data/tasks/bin/bundle-platform +1 -0
  334. data/tasks/bin/bundler_patch.rb +27 -0
  335. data/tasks/cbgb.rb +2 -2
  336. data/tasks/maintainers.rb +2 -2
  337. metadata +37 -8
  338. data/spec/unit/provider/user/useradd_spec.rb +0 -51
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23b3b446b1cdba1e268f0a8daee5910a8dbe0b63
4
- data.tar.gz: 4c0af49479450161cb1a91df04b77fa7ead095c3
3
+ metadata.gz: 11dcba37bf901f655fe7250dc2f0d6cbdcbd7721
4
+ data.tar.gz: 158a24473f8cb0865bf9c66c1e66c834670b8a43
5
5
  SHA512:
6
- metadata.gz: 5cfefc441c6e7803423eb64c455d1ebecef6645bb7f5af3de87ce0c52e734ce7b6f79a5bc2c1723dd705921ce50df8356b7d6375866c72f776138e7c55c50423
7
- data.tar.gz: b7dcab2e65ded0284c5cd99c44d4b6603201e48e487ff3253442312b89a4a31ea6666d9b5b7e77e15dd1b2b5ff77de56db96a7105bc5ff056f8568c41ead131a
6
+ metadata.gz: 1064c5833d9ef2f08f7ef379dd513ecd12ad4a622f78833d7cf43fb14d7a8951d5c246b81e579b356b694ef2bdbb9b89f6a176f2ace877233fa4edccffa2f15e
7
+ data.tar.gz: 84c784faa04c3fa4a735d6140300bf95f0f7383cc24ae5b42c5af17d756ece4c96cc2412a11c042b9c21d1cd684166a63f7da60bbf6187493dfe76992a4f1310
@@ -15,84 +15,54 @@ We have a 3 step process that utilizes **Github Issues**:
15
15
  2. Create a Github Pull Request.
16
16
  3. Do [Code Review](#cr) with the **Chef Engineering Team** or **Chef Core Committers** on the pull request.
17
17
 
18
- ### <a name="pulls"></a> Chef Pull Requests
18
+ ### Chef Pull Requests
19
19
 
20
- Chef is built to last. We strive to ensure high quality throughout the Chef experience. In order to ensure
21
- this, we require a couple of things for all pull requests to Chef:
20
+ Chef is built to last. We strive to ensure high quality throughout the Chef experience. In order to ensure this, we require a couple of things for all pull requests to Chef:
22
21
 
23
- 1. **Tests:** To ensure high quality code and protect against future regressions, we require all the
24
- code in Chef to have at least unit test coverage. See the [spec/unit](https://github.com/chef/chef/tree/master/spec/unit)
25
- directory for the existing tests and use ```bundle exec rake spec``` to run them.
26
- 2. **Green Travis Run:** We use [Travis CI](https://travis-ci.org/) in order to run our tests
27
- continuously on all the pull requests. We require the Travis runs to succeed on every pull
28
- request before being merged.
22
+ 1. **Tests:** To ensure high quality code and protect against future regressions, we require all the code in Chef to have at least unit test coverage. See the [spec/unit](https://github.com/chef/chef/tree/master/spec/unit) directory for the existing tests and use `bundle exec rake spec` to run them.
23
+ 2. **Green Travis Run:** We use [Travis CI](https://travis-ci.org/) in order to run our tests continuously on all the pull requests. We require the Travis runs to succeed on every pull request before being merged.
29
24
 
25
+ ### Chef Code Review Process
30
26
 
31
- ### <a name="cr"></a> Chef Code Review Process
27
+ The Chef Code Review process happens on Github pull requests. See [this article](https://help.github.com/articles/using-pull-requests) if you're not familiar with Github Pull Requests.
32
28
 
33
- The Chef Code Review process happens on Github pull requests. See
34
- [this article](https://help.github.com/articles/using-pull-requests) if you're not
35
- familiar with Github Pull Requests.
36
-
37
- Once you a pull request, the **Chef Engineering Team** or **Chef Core Committers** will review your code
38
- and respond to you with any feedback they might have. The process at this point is as follows:
29
+ Once you open a pull request, the **Chef Engineering Team** or **Chef Core Committers** will review your code and respond to you with any feedback they might have. The process at this point is as follows:
39
30
 
40
31
  1. 2 thumbs-ups are required from the **Chef Engineering Team** or **Chef Core Committers** for all merges.
41
32
  2. When ready, your pull request will be tagged with label `Ready For Merge`.
42
- 3. Your patch will be merged into `master` including necessary documentation updates
43
- and you will be included in `CHANGELOG.md`. Our goal is to have patches merged in 2 weeks
44
- after they are marked to be merged.
45
-
46
- If you would like to learn about when your code will be available in a release of Chef, read more about
47
- [Chef Release Process](#release).
33
+ 3. Your patch will be merged into `master` including necessary documentation updates and you will be included in `CHANGELOG.md`. Our goal is to have patches merged in 2 weeks after they are marked to be merged.
48
34
 
35
+ If you would like to learn about when your code will be available in a release of Chef, read more about [Chef Release Cycles](#chef-release-cycles).
49
36
 
50
37
  ### Contributor License Agreement (CLA)
51
- Licensing is very important to open source projects. It helps ensure the
52
- software continues to be available under the terms that the author desired.
53
38
 
54
- Chef uses [the Apache 2.0 license](https://github.com/chef/chef/blob/master/LICENSE)
55
- to strike a balance between open contribution and allowing you to use the
56
- software however you would like to.
39
+ Licensing is very important to open source projects. It helps ensure the software continues to be available under the terms that the author desired.
40
+
41
+ Chef uses [the Apache 2.0 license](https://github.com/chef/chef/blob/master/LICENSE) to strike a balance between open contribution and allowing you to use the software however you would like to.
57
42
 
58
- The license tells you what rights you have that are provided by the copyright holder.
59
- It is important that the contributor fully understands what rights they are
60
- licensing and agrees to them. Sometimes the copyright holder isn't the contributor,
61
- such as when the contributor is doing work for a company.
43
+ The license tells you what rights you have that are provided by the copyright holder. It is important that the contributor fully understands what rights they are licensing and agrees to them. Sometimes the copyright holder isn't the contributor, such as when the contributor is doing work for a company.
62
44
 
63
- To make a good faith effort to ensure these criteria are met, Chef requires an Individual CLA
64
- or a Corporate CLA for contributions. This agreement helps ensure you are aware of the
65
- terms of the license you are contributing your copyrighted works under, which helps to
66
- prevent the inclusion of works in the projects that the contributor does not hold the rights
67
- to share.
45
+ To make a good faith effort to ensure these criteria are met, Chef requires an Individual CLA or a Corporate CLA for contributions. This agreement helps ensure you are aware of the terms of the license you are contributing your copyrighted works under, which helps to prevent the inclusion of works in the projects that the contributor does not hold the rights to share.
68
46
 
69
47
  It only takes a few minutes to complete a CLA, and you retain the copyright to your contribution.
70
48
 
71
- You can complete our
72
- [Individual CLA](https://supermarket.chef.io/icla-signatures/new) online.
73
- If you're contributing on behalf of your employer and they retain the copyright for your works,
74
- have your employer fill out our
75
- [Corporate CLA](https://supermarket.chef.io/ccla-signatures/new) instead.
49
+ You can complete our [Individual CLA](https://supermarket.chef.io/icla-signatures/new) online. If you're contributing on behalf of your employer and they retain the copyright for your works, have your employer fill out our [Corporate CLA](https://supermarket.chef.io/ccla-signatures/new) instead.
76
50
 
77
51
  ### Chef Obvious Fix Policy
78
52
 
79
- Small contributions such as fixing spelling errors, where the content is small enough
80
- to not be considered intellectual property, can be submitted by a contributor as a patch,
81
- without a CLA.
53
+ Small contributions such as fixing spelling errors, where the content is small enough to not be considered intellectual property, can be submitted by a contributor as a patch, without a CLA.
82
54
 
83
- As a rule of thumb, changes are obvious fixes if they do not introduce any new functionality
84
- or creative thinking. As long as the change does not affect functionality, some likely
85
- examples include the following:
55
+ As a rule of thumb, changes are obvious fixes if they do not introduce any new functionality or creative thinking. As long as the change does not affect functionality, some likely examples include the following:
86
56
 
87
- * Spelling / grammar fixes
88
- * Typo correction, white space and formatting changes
89
- * Comment clean up
90
- * Bug fixes that change default return values or error codes stored in constants
91
- * Adding logging messages or debugging output
92
- * Changes to metadata files like Gemfile, .gitignore, build scripts, etc.
93
- * Moving source files from one directory or package to another
57
+ - Spelling / grammar fixes
58
+ - Typo correction, white space and formatting changes
59
+ - Comment clean up
60
+ - Bug fixes that change default return values or error codes stored in constants
61
+ - Adding logging messages or debugging output
62
+ - Changes to 'metadata' files like Gemfile, .gitignore, build scripts, etc.
63
+ - Moving source files from one directory or package to another
94
64
 
95
- **Whenever you invoke the obvious fix rule, please say so in your commit message:**
65
+ **Whenever you invoke the "obvious fix" rule, please say so in your commit message:**
96
66
 
97
67
  ```
98
68
  ------------------------------------------------------------------------
@@ -107,67 +77,50 @@ Date: Wed Sep 18 11:44:40 2013 -0700
107
77
  ------------------------------------------------------------------------
108
78
  ```
109
79
 
110
- ## <a name="issues"></a> Chef Issue Tracking
80
+ ## Chef Issue Tracking
111
81
 
112
82
  Chef Issue Tracking is handled using Github Issues.
113
83
 
114
- If you are familiar with Chef and know the component that is causing you a problem or if you
115
- have a feature request on a specific component you can file an issue in the corresponding
116
- Github project. All of our Open Source Software can be found in our
117
- [Github organization](https://github.com/chef/).
84
+ If you are familiar with Chef and know the component that is causing you a problem or if you have a feature request on a specific component you can file an issue in the corresponding Github project. All of our Open Source Software can be found in our [Github organization](https://github.com/chef/).
118
85
 
119
- There is also a listing of the various Chef products and where to file issues that can be
120
- found in the Chef docs in the [community contributions section](https://docs.chef.io/community_contributions.html#issues-and-bug-reports).
121
-
122
- Otherwise you can file your issue in the [Chef project](https://github.com/chef/chef/issues)
123
- and we will make sure it gets filed against the appropriate project.
86
+ There is also a listing of the various Chef products and where to file issues that can be found in the Chef docs in the [community contributions section](https://docs.chef.io/community_contributions.html#issues-and-bug-reports).
124
87
 
88
+ Otherwise you can file your issue in the [Chef project](https://github.com/chef/chef/issues) and we will make sure it gets filed against the appropriate project.
125
89
 
126
90
  ### Useful Github Queries
127
91
 
128
92
  Contributions go through a review process to improve code quality and avoid regressions. Managing a large number of contributions requires a workflow to provide queues for work such as triage, code review, and merging. A semi-formal process has evolved over the life of the project. Chef maintains this process pending community development and acceptance of an [RFC](https://github.com/chef/chef-rfc). These queries will help track contributions through this process:
129
93
 
130
- * [Issues that are not assigned to a team](https://github.com/chef/chef/issues?q=is%3Aopen+-label%3AAIX+-label%3ABSD+-label%3Awindows+-label%3A%22Chef+Core%22++-label%3A%22Dev+Tools%22+-label%3AUbuntu+-label%3A%22Enterprise+Linux%22+-label%3A%22Ready+For+Merge%22+-label%3AMac+-label%3ASolaris+)
131
- * [Untriaged Issues](https://github.com/chef/chef/issues?q=is%3Aopen+is%3Aissue+-label%3ABug+-label%3AEnhancement+-label%3A%22Tech+Cleanup%22+-label%3A%22Ready+For+Merge%22)
132
- * [PRs to be Reviewed](https://github.com/chef/chef/labels/Pending%20Maintainer%20Review)
133
- * [Suitable for First Contribution](https://github.com/chef/chef/labels/Easy)
134
-
135
- ## <a name="release"></a> Chef Release Cycles
94
+ - [Issues that are not assigned to a team](https://github.com/chef/chef/issues?q=is%3Aopen+-label%3AAIX+-label%3ABSD+-label%3Awindows+-label%3A%22Chef+Core%22++-label%3A%22Dev+Tools%22+-label%3AUbuntu+-label%3A%22Enterprise+Linux%22+-label%3A%22Ready+For+Merge%22+-label%3AMac+-label%3ASolaris+)
95
+ - [Untriaged Issues](https://github.com/chef/chef/issues?q=is%3Aopen+is%3Aissue+-label%3ABug+-label%3AEnhancement+-label%3A%22Tech+Cleanup%22+-label%3A%22Ready+For+Merge%22)
96
+ - [PRs to be Reviewed](https://github.com/chef/chef/labels/Pending%20Maintainer%20Review)
97
+ - [Suitable for First Contribution](https://github.com/chef/chef/labels/Easy)
136
98
 
137
- Our primary shipping vehicle is operating system specific packages that includes
138
- all the requirements of Chef. We call these [Omnibus packages](https://github.com/chef/omnibus)
99
+ ## Chef Release Cycles
139
100
 
140
- We also release our software as gems to [Rubygems](https://rubygems.org/) but we strongly
141
- recommend using Chef packages since they are the only combination of native libraries &
142
- gems required by Chef that we test throughly.
101
+ Our primary shipping vehicle is operating system specific packages that includes all the requirements of Chef. We call these [Omnibus packages](https://github.com/chef/omnibus)
143
102
 
144
- Our version numbering closely follows [Semantic Versioning](http://semver.org/) standard. Our
145
- standard version numbers look like X.Y.Z which mean:
103
+ We also release our software as gems to [Rubygems](https://rubygems.org/) but we strongly recommend using Chef packages since they are the only combination of native libraries & gems required by Chef that we test throughly.
146
104
 
147
- * X is a major release, which may not be fully compatible with prior major releases
148
- * Y is a minor release, which adds both new features and bug fixes
149
- * Z is a patch release, which adds just bug fixes
105
+ Our version numbering roughly follows [Semantic Versioning](http://semver.org/) standard. Our standard version numbers look like X.Y.Z which mean:
150
106
 
151
- We frequently make `alpha` and `beta` releases with version numbers that look like
152
- `X.Y.Z.alpha.0` or `X.Y.Z.beta.1`. These releases are still well tested but not as
153
- throughly as **Minor** or **Patch** releases.
107
+ - X is a major release, which may not be fully compatible with prior major releases
108
+ - Y is a minor release, which adds both new features and bug fixes
109
+ - Z is a patch release, which adds just bug fixes
154
110
 
155
- We do a `Minor` release approximately every 3 months and `Patch` releases on a when-needed
156
- basis for regressions, significant bugs, and security issues.
111
+ After shipping a release of Chef we bump the `Minor` version by one to start development of the next minor releaae. All merges to master trigger an increment of the `Patch` version, and a build through our internal testing pipeline. We do a `Minor` release approximately every month, which consist of shipping one of the already auto-incremented and tested `Patch` versions. For example after shiping 12.10.24, we incremented Chef to 12.11.0\. From there 18 commits where merged bringing the version to 12.11.18, which we shipped as an omnibus package.
157
112
 
158
- Announcements of releases are available on [Chef Blog](https://www.chef.io/blog/) when they are
159
- available.
113
+ Announcements of releases are made to the [chef mailing list](https://discourse.chef.io/c/chef-release) when they are available.
160
114
 
161
115
  ## Chef Community
162
116
 
163
- Chef is made possible by a strong community of developers and system administrators. If you have
164
- any questions or if you would like to get involved in the Chef community you can check out:
117
+ Chef is made possible by a strong community of developers and system administrators. If you have any questions or if you would like to get involved in the Chef community you can check out:
165
118
 
166
- * [chef](https://discourse.chef.io/) mailing list
167
- * [\#chef](https://botbot.me/freenode/chef/) and [\#chef-hacking](https://botbot.me/freenode/chef-hacking/) IRC channels on irc.freenode.net
119
+ - [Chef Mailing List](https://discourse.chef.io/)
120
+ - [Chef Community Slack](https://community-slack.chef.io/)
168
121
 
169
122
  Also here are some additional pointers to some awesome Chef content:
170
123
 
171
- * [Chef Docs](https://docs.chef.io/)
172
- * [Learn Chef](https://learn.chef.io/)
173
- * [Chef Inc](https://www.chef.io/)
124
+ - [Chef Docs](https://docs.chef.io/)
125
+ - [Learn Chef](https://learn.chef.io/)
126
+ - [Chef Inc.](https://www.chef.io/)
data/Gemfile CHANGED
@@ -38,8 +38,14 @@ group(:integration) do
38
38
  gem "chefspec"
39
39
  gem "halite"
40
40
  gem "poise"
41
+ gem "poise-boiler", git: "https://github.com/poise/poise-boiler"
41
42
  gem "knife-windows"
42
43
  gem "foodcritic"
44
+
45
+ # We pin this so nobody brings in a cucumber-core incompatible with cucumber latest
46
+ gem "cucumber", ">= 2.4.0"
47
+ # We pin oc-chef-pedant to prevent it from updating out of lockstep with chef-zero
48
+ gem "oc-chef-pedant", git: "https://github.com/chef/chef-server"
43
49
  end
44
50
 
45
51
  group(:docgen) do
@@ -66,7 +72,6 @@ end
66
72
 
67
73
  group(:development, :test) do
68
74
  gem "simplecov"
69
- gem "rack", "< 2.0" # 2.0 requires Ruby 2.2+
70
75
 
71
76
  # for testing new chefstyle rules
72
77
  # gem 'chefstyle', github: 'chef/chefstyle'
data/README.md CHANGED
@@ -8,9 +8,7 @@ Want to try Chef? Get started with [learnchef](https://learn.chef.io)
8
8
  * Documentation: [http://docs.chef.io](http://docs.chef.io)
9
9
  * Source: [http://github.com/chef/chef/tree/master](http://github.com/chef/chef/tree/master)
10
10
  * Tickets/Issues: [https://github.com/chef/chef/issues](https://github.com/chef/chef/issues)
11
- * IRC: `#chef` and `#chef-hacking` on Freenode
12
- - Join via browser: [#chef](https://webchat.freenode.net/?channels=chef), [#chef-hacking](https://webchat.freenode.net/?channels=chef-hacking)
13
- - View logs: [#chef](https://botbot.me/freenode/chef/), [#chef-hacking](https://botbot.me/freenode/chef-hacking/)
11
+ * Slack: [Chef Community Slack](https://community-slack.chef.io/)
14
12
  * Mailing list: [https://discourse.chef.io](https://discourse.chef.io)
15
13
 
16
14
  Chef is a configuration management tool designed to bring automation to your
@@ -38,9 +36,9 @@ Install these via your platform's preferred method (`apt`, `yum`, `ports`,
38
36
  * git
39
37
  * C compiler, header files, etc. On Ubuntu/Debian, use the
40
38
  `build-essential` package.
41
- * ruby 2.0.0 or later
39
+ * ruby 2.1.0 or later
42
40
  * rubygems
43
- * bundler
41
+ * bundler gem
44
42
 
45
43
  ### Chef Installation
46
44
 
@@ -77,10 +75,10 @@ The general development process is:
77
75
  4. Push your feature branch to github and open a pull request against
78
76
  master.
79
77
 
80
- Once your repository is set up, you can start working on the code. We do use
81
- TDD with RSpec, so you'll need to get a development environment running.
82
- Follow the above procedure ("Installing from Git") to get your local
83
- copy of the source running.
78
+ Once your repository is set up, you can start working on the code. We do utilize
79
+ RSpec for test driven development, so you'll need to get a development
80
+ environment running. Follow the above procedure ("Installing from Git") to get
81
+ your local copy of the source running.
84
82
 
85
83
  ## Reporting Issues
86
84
 
@@ -142,12 +140,12 @@ Chef is an amalgam of many components. These components update all the time, nec
142
140
 
143
141
  ## Chef Packages
144
142
 
145
- Chef is distributed as packages for debian, rhel, ubuntu, windows and os/x. It includes a large number of components from various sources, and these are versioned and maintained separately from chef project, which bundles them all together conveniently for the user.
143
+ Chef is distributed as packages for debian, rhel, ubuntu, windows, solaris, aix, and os x. It includes a large number of components from various sources, and these are versioned and maintained separately from chef project, which bundles them all together conveniently for the user.
146
144
 
147
145
  These packages go through several milestones:
148
146
  - `master`: When code is checked in to master, the patch version of chef is bumped (e.g. 0.9.10 -> 0.9.11) and a build is kicked off automatically to create and test the packages in Chef's Jenkins cluster.
149
147
  - `unstable`: When a package is built, it enters the unstable channel. When all packages for all OS's have successfully built, the test phase is kicked off in Jenkins across all supported OS's. These builds are password-protected and generally only available to the test systems.
150
- - `current`: If the packages pass all the tests on all supported OS's, it is promoted as a unit to `current`, and is available via Chef's artifactory by running `curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -c current -P chef`
148
+ - `current`: If the packages pass all the tests on all supported OS's, it is promoted as a unit to `current`, and is available via Chef's artifactory by running `curl https://www.chef.io/chef/install.sh | sudo bash -s -- -c current -P chef`
151
149
  - `stable`: Periodically, Chef will pick a release to "bless" for folks who would like a slower update schedule than "every time a build passes the tests." When this happens, it is manually promoted to stable and an announcement is sent to the list. It can be reached at https://downloads.chef.io or installed using the `curl` command without specifying `-c current`. Packages in `stable` are no longer available in `current`.
152
150
 
153
151
  Additionally, periodically Chef will update the desired versions of chef components and check that in to `master`, triggering a new build with the updated components in it.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 12.13.37
1
+ 12.14.60
@@ -14,7 +14,6 @@ driver:
14
14
  aws_ssh_key_id: <%= ENV['AWS_SSH_KEY_ID'] || ENV['USER'] || ENV['USERNAME'] %>
15
15
  # test-specific stuff
16
16
  region: us-west-2
17
- availability_zone: a
18
17
  subnet_id: subnet-19ac017c
19
18
  security_group_ids: ["sg-e401eb83", "sg-96274af3"]
20
19
  instance_type: m3.large
@@ -7,10 +7,7 @@ gem "inspec"
7
7
  # puts in a box_url for bento when a vagrant box in atlas is specified
8
8
  gem "kitchen-vagrant"
9
9
  gem "windows_chef_zero"
10
- gem "kitchen-inspec", :github => "mwrock/kitchen-inspec", :branch => "winrm-v2"
11
- gem "test-kitchen", :github => "test-kitchen", :branch => "winrm-v2"
12
- gem "train", :github => "chef/train", :branch => "winrm-v2"
13
- gem "winrm", :github => "winrb/winrm", :branch => "winrm-v2"
14
- gem "winrm-fs", :github => "winrb/winrm-fs", :branch => "winrm-v2"
15
- gem "winrm-elevated", :github => "winrb/winrm-elevated", :branch => "winrm-v2"
16
- gem "berkshelf"
10
+ gem "kitchen-inspec"
11
+ gem "test-kitchen"
12
+ gem "winrm-elevated"
13
+ gem "berkshelf", "4.3.5"
@@ -6,88 +6,17 @@ GIT
6
6
  mixlib-shellout (~> 2.0)
7
7
  thor (~> 0.19)
8
8
 
9
- GIT
10
- remote: git://github.com/chef/train.git
11
- revision: 11ec2db8a2c06757335660a2704ca140b24b7ec3
12
- branch: winrm-v2
13
- specs:
14
- train (0.15.1)
15
- docker-api (~> 1.26)
16
- json (~> 1.8)
17
- mixlib-shellout (~> 2.0)
18
- net-scp (~> 1.2)
19
- net-ssh (>= 2.9, < 4.0)
20
- winrm (~> 2.0)
21
- winrm-fs (~> 1.0)
22
-
23
- GIT
24
- remote: git://github.com/mwrock/kitchen-inspec.git
25
- revision: 5c00e1d66fa3b459e0a504ed08d0550c31f35b06
26
- branch: winrm-v2
27
- specs:
28
- kitchen-inspec (0.14.0)
29
- inspec (>= 0.22.0, < 1.0.0)
30
- test-kitchen (~> 1.6)
31
-
32
- GIT
33
- remote: git://github.com/test-kitchen/test-kitchen.git
34
- revision: c4b42161729572b95a93468fb8d653d15935bc74
35
- branch: winrm-v2
36
- specs:
37
- test-kitchen (1.10.2)
38
- mixlib-install (~> 1.0, >= 1.0.4)
39
- mixlib-shellout (>= 1.2, < 3.0)
40
- net-scp (~> 1.1)
41
- net-ssh (>= 2.9, < 4.0)
42
- safe_yaml (~> 1.0)
43
- thor (~> 0.18)
44
-
45
- GIT
46
- remote: git://github.com/winrb/winrm-elevated.git
47
- revision: fcf1d3490412d780d17ac4db09a9101b9794f6f4
48
- branch: winrm-v2
49
- specs:
50
- winrm-elevated (1.0.0)
51
- winrm (~> 2.0)
52
- winrm-fs (~> 1.0)
53
-
54
- GIT
55
- remote: git://github.com/winrb/winrm-fs.git
56
- revision: d8fa7d648d797c434b20d8f45aa91ddb8f2d2c82
57
- branch: winrm-v2
58
- specs:
59
- winrm-fs (1.0.0)
60
- erubis (~> 2.7)
61
- logging (>= 1.6.1, < 3.0)
62
- rubyzip (~> 1.1)
63
- winrm
64
-
65
- GIT
66
- remote: git://github.com/winrb/winrm.git
67
- revision: d6ae35d857234676916054344070d601519ec102
68
- branch: winrm-v2
69
- specs:
70
- winrm (2.0.0)
71
- builder (>= 2.1.2)
72
- erubis (~> 2.7)
73
- gssapi (~> 1.2)
74
- gyoku (~> 1.0)
75
- httpclient (~> 2.2, >= 2.2.0.2)
76
- logging (>= 1.6.1, < 3.0)
77
- nori (~> 2.0)
78
- rubyntlm (~> 0.6.0)
79
-
80
9
  GEM
81
10
  remote: https://rubygems.org/
82
11
  specs:
83
12
  addressable (2.4.0)
84
13
  artifactory (2.3.3)
85
- aws-sdk (2.5.3)
86
- aws-sdk-resources (= 2.5.3)
87
- aws-sdk-core (2.5.3)
14
+ aws-sdk (2.5.8)
15
+ aws-sdk-resources (= 2.5.8)
16
+ aws-sdk-core (2.5.8)
88
17
  jmespath (~> 1.0)
89
- aws-sdk-resources (2.5.3)
90
- aws-sdk-core (= 2.5.3)
18
+ aws-sdk-resources (2.5.8)
19
+ aws-sdk-core (= 2.5.8)
91
20
  berkshelf (4.3.5)
92
21
  addressable (~> 2.3, >= 2.3.4)
93
22
  berkshelf-api-client (~> 2.0, >= 2.0.2)
@@ -124,7 +53,7 @@ GEM
124
53
  celluloid-io (0.16.2)
125
54
  celluloid (>= 0.16.0)
126
55
  nio4r (>= 1.1.0)
127
- chef-config (12.13.30)
56
+ chef-config (12.13.37)
128
57
  fuzzyurl
129
58
  mixlib-config (~> 2.0)
130
59
  mixlib-shellout (~> 2.0)
@@ -135,7 +64,7 @@ GEM
135
64
  excon (>= 0.38.0)
136
65
  json
137
66
  erubis (2.7.0)
138
- excon (0.51.0)
67
+ excon (0.52.0)
139
68
  faraday (0.9.2)
140
69
  multipart-post (>= 1.2, < 3)
141
70
  ffi (1.9.14)
@@ -147,25 +76,30 @@ GEM
147
76
  hashie (3.4.4)
148
77
  hitimes (1.2.4)
149
78
  httpclient (2.7.2)
150
- inspec (0.28.1)
79
+ inspec (0.32.0)
151
80
  hashie (~> 3.4)
152
- json (~> 1.8)
81
+ json (>= 1.8, < 3.0)
153
82
  method_source (~> 0.8)
83
+ mixlib-log
154
84
  pry (~> 0)
155
85
  rainbow (~> 2)
156
86
  rspec (~> 3)
157
87
  rspec-its (~> 1.2)
158
88
  rubyzip (~> 1.1)
89
+ sslshake (~> 1)
159
90
  thor (~> 0.19)
160
- train (>= 0.15.1, < 1.0)
91
+ train (>= 0.16.0, < 1.0)
161
92
  jmespath (1.3.1)
162
- json (1.8.3)
93
+ json (2.0.2)
163
94
  kitchen-ec2 (1.1.0)
164
95
  aws-sdk (~> 2)
165
96
  excon
166
97
  multi_json
167
98
  retryable (~> 2.0)
168
99
  test-kitchen (~> 1.4, >= 1.4.1)
100
+ kitchen-inspec (0.15.1)
101
+ inspec (>= 0.22.0, < 1.0.0)
102
+ test-kitchen (~> 1.6)
169
103
  kitchen-vagrant (0.20.0)
170
104
  test-kitchen (~> 1.4)
171
105
  little-plugger (1.1.4)
@@ -178,13 +112,13 @@ GEM
178
112
  mixlib-log
179
113
  mixlib-authentication (1.4.1)
180
114
  mixlib-log
181
- mixlib-config (2.2.1)
115
+ mixlib-config (2.2.4)
182
116
  mixlib-install (1.1.0)
183
117
  artifactory
184
118
  mixlib-shellout
185
119
  mixlib-versioning
186
120
  mixlib-log (1.7.1)
187
- mixlib-shellout (2.2.6)
121
+ mixlib-shellout (2.2.7)
188
122
  mixlib-versioning (1.1.0)
189
123
  molinillo (0.4.5)
190
124
  multi_json (1.12.1)
@@ -192,6 +126,8 @@ GEM
192
126
  net-scp (1.2.1)
193
127
  net-ssh (>= 2.6.5)
194
128
  net-ssh (3.2.0)
129
+ net-ssh-gateway (1.2.0)
130
+ net-ssh (>= 2.6.5)
195
131
  nio4r (1.2.1)
196
132
  nori (2.6.0)
197
133
  octokit (4.3.0)
@@ -224,7 +160,7 @@ GEM
224
160
  rspec-core (~> 3.5.0)
225
161
  rspec-expectations (~> 3.5.0)
226
162
  rspec-mocks (~> 3.5.0)
227
- rspec-core (3.5.2)
163
+ rspec-core (3.5.3)
228
164
  rspec-support (~> 3.5.0)
229
165
  rspec-expectations (3.5.0)
230
166
  diff-lcs (>= 1.2.0, < 2.0)
@@ -247,31 +183,62 @@ GEM
247
183
  solve (2.0.3)
248
184
  molinillo (~> 0.4.2)
249
185
  semverse (~> 1.1)
186
+ sslshake (1.0.12)
187
+ test-kitchen (1.12.0)
188
+ mixlib-install (~> 1.0, >= 1.0.4)
189
+ mixlib-shellout (>= 1.2, < 3.0)
190
+ net-scp (~> 1.1)
191
+ net-ssh (>= 2.9, < 4.0)
192
+ net-ssh-gateway (~> 1.2.0)
193
+ safe_yaml (~> 1.0)
194
+ thor (~> 0.18)
250
195
  thor (0.19.1)
251
196
  timers (4.0.4)
252
197
  hitimes
198
+ train (0.19.0)
199
+ docker-api (~> 1.26)
200
+ json (>= 1.8, < 3.0)
201
+ mixlib-shellout (~> 2.0)
202
+ net-scp (~> 1.2)
203
+ net-ssh (>= 2.9, < 4.0)
204
+ winrm (~> 2.0)
205
+ winrm-fs (~> 1.0)
253
206
  varia_model (0.4.1)
254
207
  buff-extensions (~> 1.0)
255
208
  hashie (>= 2.0.2, < 4.0.0)
256
209
  windows_chef_zero (2.0.0)
257
210
  test-kitchen (>= 1.2.1)
211
+ winrm (2.0.1)
212
+ builder (>= 2.1.2)
213
+ erubis (~> 2.7)
214
+ gssapi (~> 1.2)
215
+ gyoku (~> 1.0)
216
+ httpclient (~> 2.2, >= 2.2.0.2)
217
+ logging (>= 1.6.1, < 3.0)
218
+ nori (~> 2.0)
219
+ rubyntlm (~> 0.6.0)
220
+ winrm-elevated (1.0.0)
221
+ winrm (~> 2.0)
222
+ winrm-fs (~> 1.0)
223
+ winrm-fs (1.0.0)
224
+ erubis (~> 2.7)
225
+ logging (>= 1.6.1, < 3.0)
226
+ rubyzip (~> 1.1)
227
+ winrm (~> 2.0)
258
228
 
259
229
  PLATFORMS
260
230
  ruby
261
231
 
262
232
  DEPENDENCIES
263
- berkshelf
233
+ berkshelf (= 4.3.5)
264
234
  chef-acceptance!
265
235
  inspec
266
236
  kitchen-ec2
267
- kitchen-inspec!
237
+ kitchen-inspec
268
238
  kitchen-vagrant
269
- test-kitchen!
270
- train!
239
+ test-kitchen
271
240
  windows_chef_zero
272
- winrm!
273
- winrm-elevated!
274
- winrm-fs!
241
+ winrm-elevated
275
242
 
276
243
  BUNDLED WITH
277
244
  1.12.5