chef 12.18.31-universal-mingw32 → 12.19.33-universal-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (305) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +5 -4
  3. data/README.md +12 -13
  4. data/VERSION +1 -1
  5. data/acceptance/Gemfile +4 -4
  6. data/acceptance/Gemfile.lock +70 -69
  7. data/chef-universal-mingw32.gemspec +2 -3
  8. data/chef.gemspec +6 -6
  9. data/lib/chef/api_client.rb +8 -10
  10. data/lib/chef/api_client_v1.rb +9 -11
  11. data/lib/chef/application/apply.rb +8 -10
  12. data/lib/chef/application/client.rb +1 -1
  13. data/lib/chef/application/exit_code.rb +3 -5
  14. data/lib/chef/application/knife.rb +2 -2
  15. data/lib/chef/application/windows_service.rb +29 -30
  16. data/lib/chef/application/windows_service_manager.rb +1 -1
  17. data/lib/chef/audit/audit_event_proxy.rb +2 -2
  18. data/lib/chef/audit/control_group_data.rb +1 -1
  19. data/lib/chef/chef_class.rb +1 -0
  20. data/lib/chef/chef_fs/chef_fs_data_store.rb +5 -7
  21. data/lib/chef/chef_fs/command_line.rb +15 -16
  22. data/lib/chef/chef_fs/data_handler/client_data_handler.rb +1 -1
  23. data/lib/chef/chef_fs/data_handler/container_data_handler.rb +1 -1
  24. data/lib/chef/chef_fs/data_handler/cookbook_data_handler.rb +1 -1
  25. data/lib/chef/chef_fs/data_handler/data_bag_item_data_handler.rb +1 -1
  26. data/lib/chef/chef_fs/data_handler/environment_data_handler.rb +1 -1
  27. data/lib/chef/chef_fs/data_handler/group_data_handler.rb +1 -1
  28. data/lib/chef/chef_fs/data_handler/node_data_handler.rb +1 -1
  29. data/lib/chef/chef_fs/data_handler/organization_data_handler.rb +1 -1
  30. data/lib/chef/chef_fs/data_handler/role_data_handler.rb +1 -1
  31. data/lib/chef/chef_fs/data_handler/user_data_handler.rb +1 -1
  32. data/lib/chef/chef_fs/file_pattern.rb +2 -2
  33. data/lib/chef/chef_fs/file_system.rb +1 -1
  34. data/lib/chef/chef_fs/file_system/chef_server/cookbook_dir.rb +5 -6
  35. data/lib/chef/chef_fs/file_system/chef_server/cookbook_file.rb +8 -10
  36. data/lib/chef/chef_fs/file_system/chef_server/data_bags_dir.rb +8 -10
  37. data/lib/chef/chef_fs/file_system/chef_server/nodes_dir.rb +10 -12
  38. data/lib/chef/chef_fs/file_system/chef_server/policies_dir.rb +28 -30
  39. data/lib/chef/chef_fs/file_system/chef_server/policy_group_entry.rb +1 -1
  40. data/lib/chef/chef_fs/file_system/chef_server/rest_list_dir.rb +27 -29
  41. data/lib/chef/chef_fs/file_system/chef_server/rest_list_entry.rb +18 -24
  42. data/lib/chef/chef_fs/file_system/memory/memory_file.rb +1 -1
  43. data/lib/chef/chef_fs/file_system/multiplexed_dir.rb +10 -12
  44. data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_dir.rb +10 -12
  45. data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_cookbook_entry.rb +9 -13
  46. data/lib/chef/chef_fs/file_system/repository/chef_repository_file_system_root_dir.rb +2 -0
  47. data/lib/chef/chef_fs/file_system/repository/cookbooks_dir.rb +1 -1
  48. data/lib/chef/chef_fs/file_system/repository/nodes_dir.rb +3 -0
  49. data/lib/chef/chef_fs/parallelizer.rb +9 -11
  50. data/lib/chef/cookbook/cookbook_version_loader.rb +25 -31
  51. data/lib/chef/cookbook/metadata.rb +26 -26
  52. data/lib/chef/cookbook/syntax_check.rb +1 -1
  53. data/lib/chef/cookbook_version.rb +3 -3
  54. data/lib/chef/data_bag.rb +1 -1
  55. data/lib/chef/data_bag_item.rb +3 -3
  56. data/lib/chef/data_collector.rb +3 -4
  57. data/lib/chef/decorator.rb +1 -1
  58. data/lib/chef/deprecated.rb +30 -0
  59. data/lib/chef/dsl/audit.rb +2 -2
  60. data/lib/chef/dsl/declare_resource.rb +1 -1
  61. data/lib/chef/dsl/platform_introspection.rb +29 -31
  62. data/lib/chef/dsl/reboot_pending.rb +1 -1
  63. data/lib/chef/dsl/resources.rb +6 -8
  64. data/lib/chef/encrypted_data_bag_item.rb +2 -2
  65. data/lib/chef/environment.rb +9 -11
  66. data/lib/chef/event_loggers/windows_eventlog.rb +1 -1
  67. data/lib/chef/exceptions.rb +4 -1
  68. data/lib/chef/file_access_control/unix.rb +14 -14
  69. data/lib/chef/file_access_control/windows.rb +1 -1
  70. data/lib/chef/formatters/error_inspectors/api_error_formatting.rb +4 -5
  71. data/lib/chef/formatters/error_mapper.rb +6 -6
  72. data/lib/chef/http/api_versions.rb +50 -0
  73. data/lib/chef/http/validate_content_length.rb +2 -2
  74. data/lib/chef/json_compat.rb +6 -10
  75. data/lib/chef/key.rb +5 -5
  76. data/lib/chef/knife.rb +4 -4
  77. data/lib/chef/knife/cookbook_site_install.rb +2 -2
  78. data/lib/chef/knife/core/cookbook_scm_repo.rb +2 -2
  79. data/lib/chef/knife/core/gem_glob_loader.rb +1 -1
  80. data/lib/chef/knife/core/status_presenter.rb +1 -1
  81. data/lib/chef/knife/core/ui.rb +19 -25
  82. data/lib/chef/knife/data_bag_secret_options.rb +1 -1
  83. data/lib/chef/knife/deps.rb +32 -34
  84. data/lib/chef/knife/help.rb +1 -1
  85. data/lib/chef/knife/list.rb +1 -1
  86. data/lib/chef/knife/search.rb +2 -2
  87. data/lib/chef/knife/ssh.rb +37 -27
  88. data/lib/chef/knife/ssl_check.rb +1 -1
  89. data/lib/chef/knife/user_delete.rb +1 -1
  90. data/lib/chef/mash.rb +1 -1
  91. data/lib/chef/mixin/command.rb +2 -2
  92. data/lib/chef/mixin/create_path.rb +3 -5
  93. data/lib/chef/mixin/from_file.rb +2 -2
  94. data/lib/chef/mixin/get_source_from_package.rb +2 -2
  95. data/lib/chef/mixin/notifying_block.rb +7 -9
  96. data/lib/chef/mixin/params_validate.rb +3 -3
  97. data/lib/chef/mixin/securable.rb +1 -1
  98. data/lib/chef/mixin/shell_out.rb +23 -3
  99. data/lib/chef/mixin/unformatter.rb +2 -2
  100. data/lib/chef/mixin/uris.rb +4 -6
  101. data/lib/chef/mixin/versioned_api.rb +69 -0
  102. data/lib/chef/mixin/which.rb +25 -8
  103. data/lib/chef/mixin/windows_architecture_helper.rb +2 -2
  104. data/lib/chef/mixin/xml_escape.rb +3 -5
  105. data/lib/chef/monkey_patches/webrick-utils.rb +1 -1
  106. data/lib/chef/node.rb +8 -8
  107. data/lib/chef/node/attribute.rb +4 -4
  108. data/lib/chef/node/common_api.rb +5 -7
  109. data/lib/chef/org.rb +10 -12
  110. data/lib/chef/platform/provider_mapping.rb +7 -7
  111. data/lib/chef/platform/query_helpers.rb +1 -1
  112. data/lib/chef/policy_builder/policyfile.rb +1 -0
  113. data/lib/chef/property.rb +31 -0
  114. data/lib/chef/provider/batch.rb +1 -1
  115. data/lib/chef/provider/breakpoint.rb +1 -1
  116. data/lib/chef/provider/cookbook_file.rb +3 -3
  117. data/lib/chef/provider/cron.rb +38 -38
  118. data/lib/chef/provider/deploy.rb +81 -81
  119. data/lib/chef/provider/deploy/revision.rb +3 -5
  120. data/lib/chef/provider/directory.rb +32 -32
  121. data/lib/chef/provider/dsc_resource.rb +22 -6
  122. data/lib/chef/provider/env.rb +28 -28
  123. data/lib/chef/provider/env/windows.rb +1 -1
  124. data/lib/chef/provider/erl_call.rb +13 -13
  125. data/lib/chef/provider/execute.rb +5 -2
  126. data/lib/chef/provider/file.rb +49 -51
  127. data/lib/chef/provider/git.rb +55 -55
  128. data/lib/chef/provider/http_request.rb +36 -36
  129. data/lib/chef/provider/launchd.rb +2 -2
  130. data/lib/chef/provider/link.rb +50 -50
  131. data/lib/chef/provider/log.rb +2 -2
  132. data/lib/chef/provider/mdadm.rb +25 -25
  133. data/lib/chef/provider/mount/aix.rb +2 -2
  134. data/lib/chef/provider/mount/mount.rb +2 -2
  135. data/lib/chef/provider/ohai.rb +1 -1
  136. data/lib/chef/provider/osx_profile.rb +23 -23
  137. data/lib/chef/provider/package.rb +74 -56
  138. data/lib/chef/provider/package/aix.rb +55 -52
  139. data/lib/chef/provider/package/apt.rb +15 -13
  140. data/lib/chef/provider/package/cab.rb +49 -20
  141. data/lib/chef/provider/package/chocolatey.rb +9 -10
  142. data/lib/chef/provider/package/dnf.rb +20 -18
  143. data/lib/chef/provider/package/dnf/dnf_helper.py +1 -1
  144. data/lib/chef/provider/package/dnf/python_helper.rb +63 -26
  145. data/lib/chef/provider/package/dnf/version.rb +1 -1
  146. data/lib/chef/provider/package/dpkg.rb +8 -9
  147. data/lib/chef/provider/package/easy_install.rb +22 -22
  148. data/lib/chef/provider/package/freebsd/base.rb +10 -10
  149. data/lib/chef/provider/package/freebsd/pkg.rb +15 -15
  150. data/lib/chef/provider/package/freebsd/pkgng.rb +13 -15
  151. data/lib/chef/provider/package/freebsd/port.rb +7 -7
  152. data/lib/chef/provider/package/homebrew.rb +11 -10
  153. data/lib/chef/provider/package/ips.rb +18 -23
  154. data/lib/chef/provider/package/macports.rb +23 -23
  155. data/lib/chef/provider/package/msu.rb +11 -11
  156. data/lib/chef/provider/package/openbsd.rb +25 -22
  157. data/lib/chef/provider/package/pacman.rb +16 -16
  158. data/lib/chef/provider/package/paludis.rb +26 -27
  159. data/lib/chef/provider/package/portage.rb +22 -22
  160. data/lib/chef/provider/package/powershell.rb +17 -17
  161. data/lib/chef/provider/package/rpm.rb +25 -25
  162. data/lib/chef/provider/package/rubygems.rb +60 -60
  163. data/lib/chef/provider/package/smartos.rb +16 -16
  164. data/lib/chef/provider/package/solaris.rb +44 -44
  165. data/lib/chef/provider/package/windows.rb +3 -3
  166. data/lib/chef/provider/package/windows/exe.rb +6 -6
  167. data/lib/chef/provider/package/windows/msi.rb +6 -6
  168. data/lib/chef/provider/package/yum.rb +318 -268
  169. data/lib/chef/provider/package/yum/rpm_utils.rb +34 -34
  170. data/lib/chef/provider/package/yum/yum_cache.rb +12 -12
  171. data/lib/chef/provider/package/zypper.rb +11 -11
  172. data/lib/chef/provider/powershell_script.rb +15 -7
  173. data/lib/chef/provider/reboot.rb +10 -10
  174. data/lib/chef/provider/registry_key.rb +39 -39
  175. data/lib/chef/provider/remote_directory.rb +3 -3
  176. data/lib/chef/provider/remote_file.rb +3 -3
  177. data/lib/chef/provider/route.rb +1 -1
  178. data/lib/chef/provider/ruby_block.rb +3 -3
  179. data/lib/chef/provider/script.rb +42 -6
  180. data/lib/chef/provider/service.rb +49 -49
  181. data/lib/chef/provider/service/solaris.rb +1 -1
  182. data/lib/chef/provider/service/systemd.rb +1 -1
  183. data/lib/chef/provider/subversion.rb +39 -39
  184. data/lib/chef/provider/systemd_unit.rb +2 -0
  185. data/lib/chef/provider/template.rb +3 -3
  186. data/lib/chef/provider/user.rb +42 -42
  187. data/lib/chef/provider/whyrun_safe_ruby_block.rb +4 -4
  188. data/lib/chef/resource.rb +27 -16
  189. data/lib/chef/resource/apt_repository.rb +0 -1
  190. data/lib/chef/resource/chef_gem.rb +1 -1
  191. data/lib/chef/resource/dnf_package.rb +6 -3
  192. data/lib/chef/resource/dsc_resource.rb +9 -1
  193. data/lib/chef/resource/execute.rb +70 -6
  194. data/lib/chef/resource/file/verification/systemd_unit.rb +67 -0
  195. data/lib/chef/resource/freebsd_package.rb +1 -1
  196. data/lib/chef/resource/gem_package.rb +1 -1
  197. data/lib/chef/resource/launchd.rb +13 -1
  198. data/lib/chef/resource/package.rb +2 -2
  199. data/lib/chef/resource/registry_key.rb +1 -1
  200. data/lib/chef/resource/yum_package.rb +12 -3
  201. data/lib/chef/resource/yum_repository.rb +0 -1
  202. data/lib/chef/resource_collection/resource_collection_serialization.rb +3 -3
  203. data/lib/chef/resource_collection/resource_set.rb +2 -2
  204. data/lib/chef/resource_reporter.rb +1 -1
  205. data/lib/chef/run_context.rb +3 -3
  206. data/lib/chef/run_list/run_list_item.rb +1 -1
  207. data/lib/chef/run_list/versioned_recipe_list.rb +6 -6
  208. data/lib/chef/server_api.rb +2 -0
  209. data/lib/chef/server_api_versions.rb +40 -0
  210. data/lib/chef/shell.rb +1 -1
  211. data/lib/chef/shell/ext.rb +3 -3
  212. data/lib/chef/shell/shell_session.rb +1 -1
  213. data/lib/chef/user.rb +9 -11
  214. data/lib/chef/user_v1.rb +9 -11
  215. data/lib/chef/util/diff.rb +1 -1
  216. data/lib/chef/util/dsc/lcm_output_parser.rb +1 -1
  217. data/lib/chef/util/selinux.rb +1 -1
  218. data/lib/chef/util/windows/net_group.rb +18 -30
  219. data/lib/chef/util/windows/net_use.rb +7 -11
  220. data/lib/chef/util/windows/net_user.rb +11 -17
  221. data/lib/chef/util/windows/volume.rb +9 -15
  222. data/lib/chef/version.rb +1 -1
  223. data/lib/chef/version_class.rb +1 -1
  224. data/lib/chef/win32/api.rb +4 -6
  225. data/lib/chef/win32/api/file.rb +25 -31
  226. data/lib/chef/win32/api/installer.rb +2 -2
  227. data/lib/chef/win32/file.rb +4 -6
  228. data/lib/chef/win32/registry.rb +9 -9
  229. data/lib/chef/win32/security.rb +2 -2
  230. data/lib/chef/win32/security/acl.rb +2 -2
  231. data/lib/chef/win32/unicode.rb +2 -2
  232. data/lib/chef/win32/version.rb +1 -1
  233. data/spec/data/prefer_metadata_json/metadata.json +51 -0
  234. data/spec/data/prefer_metadata_json/metadata.rb +6 -0
  235. data/spec/data/prefer_metadata_json/recipes/default.rb +0 -0
  236. data/spec/functional/knife/ssh_spec.rb +5 -5
  237. data/spec/functional/resource/batch_spec.rb +5 -1
  238. data/spec/functional/resource/dsc_script_spec.rb +2 -4
  239. data/spec/functional/resource/execute_spec.rb +17 -0
  240. data/spec/functional/resource/user/dscl_spec.rb +2 -4
  241. data/spec/integration/client/client_spec.rb +33 -0
  242. data/spec/integration/recipes/recipe_dsl_spec.rb +58 -58
  243. data/spec/spec_helper.rb +4 -0
  244. data/spec/support/chef_helpers.rb +5 -7
  245. data/spec/support/platform_helpers.rb +6 -0
  246. data/spec/support/platforms/prof/gc.rb +4 -6
  247. data/spec/support/shared/context/client.rb +1 -1
  248. data/spec/support/shared/functional/execute_resource.rb +150 -0
  249. data/spec/support/shared/functional/windows_script.rb +74 -4
  250. data/spec/support/shared/unit/execute_resource.rb +37 -0
  251. data/spec/support/shared/unit/provider/file.rb +10 -0
  252. data/spec/unit/cookbook/cookbook_version_loader_spec.rb +9 -0
  253. data/spec/unit/cookbook/syntax_check_spec.rb +8 -2
  254. data/spec/unit/http/api_versions_spec.rb +69 -0
  255. data/spec/unit/knife/ssh_spec.rb +34 -36
  256. data/spec/unit/mixin/versioned_api_spec.rb +107 -0
  257. data/spec/unit/mixin/which.rb +160 -0
  258. data/spec/unit/platform_spec.rb +28 -1
  259. data/spec/unit/provider/deploy_spec.rb +1 -1
  260. data/spec/unit/provider/directory_spec.rb +10 -0
  261. data/spec/unit/provider/dsc_resource_spec.rb +175 -0
  262. data/spec/unit/provider/execute_spec.rb +0 -1
  263. data/spec/unit/provider/launchd_spec.rb +2 -2
  264. data/spec/unit/provider/package/aix_spec.rb +22 -22
  265. data/spec/unit/provider/package/apt_spec.rb +27 -27
  266. data/spec/unit/provider/package/cab_spec.rb +59 -5
  267. data/spec/unit/provider/package/dnf/python_helper_spec.rb +29 -0
  268. data/spec/unit/provider/package/dpkg_spec.rb +16 -16
  269. data/spec/unit/provider/package/easy_install_spec.rb +18 -18
  270. data/spec/unit/provider/package/freebsd/pkg_spec.rb +15 -15
  271. data/spec/unit/provider/package/freebsd/pkgng_spec.rb +9 -9
  272. data/spec/unit/provider/package/freebsd/port_spec.rb +9 -9
  273. data/spec/unit/provider/package/homebrew_spec.rb +9 -9
  274. data/spec/unit/provider/package/ips_spec.rb +37 -31
  275. data/spec/unit/provider/package/macports_spec.rb +10 -10
  276. data/spec/unit/provider/package/openbsd_spec.rb +10 -10
  277. data/spec/unit/provider/package/pacman_spec.rb +6 -6
  278. data/spec/unit/provider/package/paludis_spec.rb +7 -7
  279. data/spec/unit/provider/package/portage_spec.rb +6 -7
  280. data/spec/unit/provider/package/rpm_spec.rb +23 -23
  281. data/spec/unit/provider/package/rubygems_spec.rb +38 -38
  282. data/spec/unit/provider/package/solaris_spec.rb +15 -15
  283. data/spec/unit/provider/package/windows_spec.rb +2 -1
  284. data/spec/unit/provider/package/yum_spec.rb +51 -43
  285. data/spec/unit/provider/package/zypper_spec.rb +34 -34
  286. data/spec/unit/provider/package_spec.rb +8 -0
  287. data/spec/unit/provider/remote_file/sftp_spec.rb +3 -3
  288. data/spec/unit/provider/route_spec.rb +7 -1
  289. data/spec/unit/provider/script_spec.rb +49 -6
  290. data/spec/unit/resource/dsc_resource_spec.rb +6 -0
  291. data/spec/unit/resource/execute_spec.rb +214 -0
  292. data/spec/unit/resource/file/verification/systemd_unit_spec.rb +103 -0
  293. data/spec/unit/resource/freebsd_package_spec.rb +2 -2
  294. data/spec/unit/resource/package_spec.rb +5 -0
  295. data/spec/unit/resource/yum_package_spec.rb +42 -1
  296. data/spec/unit/resource_reporter_spec.rb +1 -1
  297. data/spec/unit/resource_spec.rb +18 -0
  298. data/spec/unit/server_api_versions_spec.rb +44 -0
  299. data/spec/unit/util/selinux_spec.rb +3 -14
  300. data/spec/unit/win32/error_spec.rb +67 -0
  301. data/spec/unit/win32/security_spec.rb +66 -0
  302. data/tasks/changelog.rb +1 -1
  303. data/tasks/dependencies.rb +20 -4
  304. metadata +39 -18
  305. data/lib/chef/monkey_patches/net-ssh-multi.rb +0 -141
@@ -32,78 +32,78 @@ class Chef
32
32
  end
33
33
 
34
34
  def load_current_resource
35
- @http = Chef::HTTP::Simple.new(@new_resource.url)
35
+ @http = Chef::HTTP::Simple.new(new_resource.url)
36
36
  end
37
37
 
38
- # Send a HEAD request to @new_resource.url
38
+ # Send a HEAD request to new_resource.url
39
39
  def action_head
40
- message = check_message(@new_resource.message)
40
+ message = check_message(new_resource.message)
41
41
  # CHEF-4762: we expect a nil return value from Chef::HTTP for a "200 Success" response
42
42
  # and false for a "304 Not Modified" response
43
43
  modified = @http.head(
44
- "#{@new_resource.url}",
45
- @new_resource.headers
44
+ "#{new_resource.url}",
45
+ new_resource.headers
46
46
  )
47
- Chef::Log.info("#{@new_resource} HEAD to #{@new_resource.url} successful")
48
- Chef::Log.debug("#{@new_resource} HEAD request response: #{modified}")
47
+ Chef::Log.info("#{new_resource} HEAD to #{new_resource.url} successful")
48
+ Chef::Log.debug("#{new_resource} HEAD request response: #{modified}")
49
49
  # :head is usually used to trigger notifications, which converge_by now does
50
50
  if modified != false
51
- converge_by("#{@new_resource} HEAD to #{@new_resource.url} returned modified, trigger notifications") {}
51
+ converge_by("#{new_resource} HEAD to #{new_resource.url} returned modified, trigger notifications") {}
52
52
  end
53
53
  end
54
54
 
55
- # Send a GET request to @new_resource.url
55
+ # Send a GET request to new_resource.url
56
56
  def action_get
57
- converge_by("#{@new_resource} GET to #{@new_resource.url}") do
57
+ converge_by("#{new_resource} GET to #{new_resource.url}") do
58
58
 
59
- message = check_message(@new_resource.message)
59
+ message = check_message(new_resource.message)
60
60
  body = @http.get(
61
- "#{@new_resource.url}",
62
- @new_resource.headers
61
+ "#{new_resource.url}",
62
+ new_resource.headers
63
63
  )
64
- Chef::Log.info("#{@new_resource} GET to #{@new_resource.url} successful")
65
- Chef::Log.debug("#{@new_resource} GET request response: #{body}")
64
+ Chef::Log.info("#{new_resource} GET to #{new_resource.url} successful")
65
+ Chef::Log.debug("#{new_resource} GET request response: #{body}")
66
66
  end
67
67
  end
68
68
 
69
- # Send a PUT request to @new_resource.url, with the message as the payload
69
+ # Send a PUT request to new_resource.url, with the message as the payload
70
70
  def action_put
71
- converge_by("#{@new_resource} PUT to #{@new_resource.url}") do
72
- message = check_message(@new_resource.message)
71
+ converge_by("#{new_resource} PUT to #{new_resource.url}") do
72
+ message = check_message(new_resource.message)
73
73
  body = @http.put(
74
- "#{@new_resource.url}",
74
+ "#{new_resource.url}",
75
75
  message,
76
- @new_resource.headers
76
+ new_resource.headers
77
77
  )
78
- Chef::Log.info("#{@new_resource} PUT to #{@new_resource.url} successful")
79
- Chef::Log.debug("#{@new_resource} PUT request response: #{body}")
78
+ Chef::Log.info("#{new_resource} PUT to #{new_resource.url} successful")
79
+ Chef::Log.debug("#{new_resource} PUT request response: #{body}")
80
80
  end
81
81
  end
82
82
 
83
- # Send a POST request to @new_resource.url, with the message as the payload
83
+ # Send a POST request to new_resource.url, with the message as the payload
84
84
  def action_post
85
- converge_by("#{@new_resource} POST to #{@new_resource.url}") do
86
- message = check_message(@new_resource.message)
85
+ converge_by("#{new_resource} POST to #{new_resource.url}") do
86
+ message = check_message(new_resource.message)
87
87
  body = @http.post(
88
- "#{@new_resource.url}",
88
+ "#{new_resource.url}",
89
89
  message,
90
- @new_resource.headers
90
+ new_resource.headers
91
91
  )
92
- Chef::Log.info("#{@new_resource} POST to #{@new_resource.url} message: #{message.inspect} successful")
93
- Chef::Log.debug("#{@new_resource} POST request response: #{body}")
92
+ Chef::Log.info("#{new_resource} POST to #{new_resource.url} message: #{message.inspect} successful")
93
+ Chef::Log.debug("#{new_resource} POST request response: #{body}")
94
94
  end
95
95
  end
96
96
 
97
- # Send a DELETE request to @new_resource.url
97
+ # Send a DELETE request to new_resource.url
98
98
  def action_delete
99
- converge_by("#{@new_resource} DELETE to #{@new_resource.url}") do
99
+ converge_by("#{new_resource} DELETE to #{new_resource.url}") do
100
100
  body = @http.delete(
101
- "#{@new_resource.url}",
102
- @new_resource.headers
101
+ "#{new_resource.url}",
102
+ new_resource.headers
103
103
  )
104
- @new_resource.updated_by_last_action(true)
105
- Chef::Log.info("#{@new_resource} DELETE to #{@new_resource.url} successful")
106
- Chef::Log.debug("#{@new_resource} DELETE request response: #{body}")
104
+ new_resource.updated_by_last_action(true)
105
+ Chef::Log.info("#{new_resource} DELETE to #{new_resource.url} successful")
106
+ Chef::Log.debug("#{new_resource} DELETE request response: #{body}")
107
107
  end
108
108
  end
109
109
 
@@ -30,7 +30,7 @@ class Chef
30
30
  extend Forwardable
31
31
  provides :launchd, os: "darwin"
32
32
 
33
- def_delegators :@new_resource, *[
33
+ def_delegators :new_resource, *[
34
34
  :backup,
35
35
  :cookbook,
36
36
  :group,
@@ -150,7 +150,7 @@ class Chef
150
150
  end
151
151
 
152
152
  def content
153
- plist_hash = new_resource.hash || gen_hash
153
+ plist_hash = new_resource.plist_hash || gen_hash
154
154
  Plist::Emit.dump(plist_hash) unless plist_hash.nil?
155
155
  end
156
156
 
@@ -47,41 +47,41 @@ class Chef
47
47
  end
48
48
 
49
49
  def load_current_resource
50
- @current_resource = Chef::Resource::Link.new(@new_resource.name)
51
- @current_resource.target_file(@new_resource.target_file)
52
- if file_class.symlink?(@current_resource.target_file)
53
- @current_resource.link_type(:symbolic)
54
- @current_resource.to(
55
- canonicalize(file_class.readlink(@current_resource.target_file))
50
+ @current_resource = Chef::Resource::Link.new(new_resource.name)
51
+ current_resource.target_file(new_resource.target_file)
52
+ if file_class.symlink?(current_resource.target_file)
53
+ current_resource.link_type(:symbolic)
54
+ current_resource.to(
55
+ canonicalize(file_class.readlink(current_resource.target_file))
56
56
  )
57
57
  else
58
- @current_resource.link_type(:hard)
59
- if ::File.exists?(@current_resource.target_file)
60
- if ::File.exists?(@new_resource.to) &&
61
- file_class.stat(@current_resource.target_file).ino ==
62
- file_class.stat(@new_resource.to).ino
63
- @current_resource.to(canonicalize(@new_resource.to))
58
+ current_resource.link_type(:hard)
59
+ if ::File.exists?(current_resource.target_file)
60
+ if ::File.exists?(new_resource.to) &&
61
+ file_class.stat(current_resource.target_file).ino ==
62
+ file_class.stat(new_resource.to).ino
63
+ current_resource.to(canonicalize(new_resource.to))
64
64
  else
65
- @current_resource.to("")
65
+ current_resource.to("")
66
66
  end
67
67
  end
68
68
  end
69
- ScanAccessControl.new(@new_resource, @current_resource).set_all!
70
- @current_resource
69
+ ScanAccessControl.new(new_resource, current_resource).set_all!
70
+ current_resource
71
71
  end
72
72
 
73
73
  def define_resource_requirements
74
74
  requirements.assert(:delete) do |a|
75
75
  a.assertion do
76
- if @current_resource.to
77
- @current_resource.link_type == @new_resource.link_type &&
78
- (@current_resource.link_type == :symbolic || @current_resource.to != "")
76
+ if current_resource.to
77
+ current_resource.link_type == new_resource.link_type &&
78
+ (current_resource.link_type == :symbolic || current_resource.to != "")
79
79
  else
80
80
  true
81
81
  end
82
82
  end
83
- a.failure_message Chef::Exceptions::Link, "Cannot delete #{@new_resource} at #{@new_resource.target_file}! Not a #{@new_resource.link_type} link."
84
- a.whyrun("Would assume the link at #{@new_resource.target_file} was previously created")
83
+ a.failure_message Chef::Exceptions::Link, "Cannot delete #{new_resource} at #{new_resource.target_file}! Not a #{new_resource.link_type} link."
84
+ a.whyrun("Would assume the link at #{new_resource.target_file} was previously created")
85
85
  end
86
86
  end
87
87
 
@@ -95,48 +95,48 @@ class Chef
95
95
  # to - the location to link to
96
96
  # target_file - the name of the link
97
97
 
98
- if @current_resource.to != canonicalize(@new_resource.to) ||
99
- @current_resource.link_type != @new_resource.link_type
98
+ if current_resource.to != canonicalize(new_resource.to) ||
99
+ current_resource.link_type != new_resource.link_type
100
100
  # Handle the case where the symlink already exists and is pointing at a valid to_file
101
- if @current_resource.to
101
+ if current_resource.to
102
102
  # On Windows, to fix a symlink already pointing at a directory we must first
103
103
  # ::Dir.unlink the symlink (not the directory), while if we have a symlink
104
104
  # pointing at file we must use ::File.unlink on the symlink.
105
105
  # However if the new symlink will point to a file and the current symlink is pointing at a
106
106
  # directory we want to throw an exception and calling ::File.unlink on the directory symlink
107
107
  # will throw the correct ones.
108
- if Chef::Platform.windows? && ::File.directory?(@new_resource.to) &&
109
- ::File.directory?(@current_resource.target_file)
110
- converge_by("unlink existing windows symlink to dir at #{@new_resource.target_file}") do
111
- ::Dir.unlink(@new_resource.target_file)
108
+ if Chef::Platform.windows? && ::File.directory?(new_resource.to) &&
109
+ ::File.directory?(current_resource.target_file)
110
+ converge_by("unlink existing windows symlink to dir at #{new_resource.target_file}") do
111
+ ::Dir.unlink(new_resource.target_file)
112
112
  end
113
113
  else
114
- converge_by("unlink existing symlink to file at #{@new_resource.target_file}") do
115
- ::File.unlink(@new_resource.target_file)
114
+ converge_by("unlink existing symlink to file at #{new_resource.target_file}") do
115
+ ::File.unlink(new_resource.target_file)
116
116
  end
117
117
  end
118
118
  end
119
- if @new_resource.link_type == :symbolic
120
- converge_by("create symlink at #{@new_resource.target_file} to #{@new_resource.to}") do
121
- file_class.symlink(canonicalize(@new_resource.to), @new_resource.target_file)
122
- Chef::Log.debug("#{@new_resource} created #{@new_resource.link_type} link from #{@new_resource.target_file} -> #{@new_resource.to}")
123
- Chef::Log.info("#{@new_resource} created")
119
+ if new_resource.link_type == :symbolic
120
+ converge_by("create symlink at #{new_resource.target_file} to #{new_resource.to}") do
121
+ file_class.symlink(canonicalize(new_resource.to), new_resource.target_file)
122
+ Chef::Log.debug("#{new_resource} created #{new_resource.link_type} link from #{new_resource.target_file} -> #{new_resource.to}")
123
+ Chef::Log.info("#{new_resource} created")
124
124
  # file_class.symlink will create the link with default access controls.
125
125
  # This means that the access controls of the file could be different
126
126
  # than those captured during the initial evaluation of current_resource.
127
127
  # We need to re-evaluate the current_resource to ensure that the desired
128
128
  # access controls are applied.
129
- ScanAccessControl.new(@new_resource, @current_resource).set_all!
129
+ ScanAccessControl.new(new_resource, current_resource).set_all!
130
130
  end
131
- elsif @new_resource.link_type == :hard
132
- converge_by("create hard link at #{@new_resource.target_file} to #{@new_resource.to}") do
133
- file_class.link(@new_resource.to, @new_resource.target_file)
134
- Chef::Log.debug("#{@new_resource} created #{@new_resource.link_type} link from #{@new_resource.target_file} -> #{@new_resource.to}")
135
- Chef::Log.info("#{@new_resource} created")
131
+ elsif new_resource.link_type == :hard
132
+ converge_by("create hard link at #{new_resource.target_file} to #{new_resource.to}") do
133
+ file_class.link(new_resource.to, new_resource.target_file)
134
+ Chef::Log.debug("#{new_resource} created #{new_resource.link_type} link from #{new_resource.target_file} -> #{new_resource.to}")
135
+ Chef::Log.info("#{new_resource} created")
136
136
  end
137
137
  end
138
138
  end
139
- if @new_resource.link_type == :symbolic
139
+ if new_resource.link_type == :symbolic
140
140
  if access_controls.requires_changes?
141
141
  converge_by(access_controls.describe_changes) do
142
142
  access_controls.set_all
@@ -146,16 +146,16 @@ class Chef
146
146
  end
147
147
 
148
148
  def action_delete
149
- if @current_resource.to # Exists
150
- if Chef::Platform.windows? && ::File.directory?(@current_resource.target_file)
151
- converge_by("delete link to dir at #{@new_resource.target_file}") do
152
- ::Dir.delete(@new_resource.target_file)
153
- Chef::Log.info("#{@new_resource} deleted")
149
+ if current_resource.to # Exists
150
+ if Chef::Platform.windows? && ::File.directory?(current_resource.target_file)
151
+ converge_by("delete link to dir at #{new_resource.target_file}") do
152
+ ::Dir.delete(new_resource.target_file)
153
+ Chef::Log.info("#{new_resource} deleted")
154
154
  end
155
155
  else
156
- converge_by("delete link to file at #{@new_resource.target_file}") do
157
- ::File.delete(@new_resource.target_file)
158
- Chef::Log.info("#{@new_resource} deleted")
156
+ converge_by("delete link to file at #{new_resource.target_file}") do
157
+ ::File.delete(new_resource.target_file)
158
+ Chef::Log.info("#{new_resource} deleted")
159
159
  end
160
160
  end
161
161
  end
@@ -165,7 +165,7 @@ class Chef
165
165
  # access control (e.g., use lchmod instead of chmod) if the resource is a
166
166
  # symlink.
167
167
  def manage_symlink_access?
168
- @new_resource.link_type == :symbolic
168
+ new_resource.link_type == :symbolic
169
169
  end
170
170
  end
171
171
  end
@@ -44,8 +44,8 @@ class Chef
44
44
  # === Return
45
45
  # true:: Always return true
46
46
  def action_write
47
- Chef::Log.send(@new_resource.level, @new_resource.message)
48
- @new_resource.updated_by_last_action(true) if Chef::Config[:count_log_resource_updates]
47
+ Chef::Log.send(new_resource.level, new_resource.message)
48
+ new_resource.updated_by_last_action(true) if Chef::Config[:count_log_resource_updates]
49
49
  end
50
50
 
51
51
  end
@@ -34,57 +34,57 @@ class Chef
34
34
  end
35
35
 
36
36
  def load_current_resource
37
- @current_resource = Chef::Resource::Mdadm.new(@new_resource.name)
38
- @current_resource.raid_device(@new_resource.raid_device)
39
- Chef::Log.debug("#{@new_resource} checking for software raid device #{@current_resource.raid_device}")
37
+ @current_resource = Chef::Resource::Mdadm.new(new_resource.name)
38
+ current_resource.raid_device(new_resource.raid_device)
39
+ Chef::Log.debug("#{new_resource} checking for software raid device #{current_resource.raid_device}")
40
40
 
41
41
  device_not_found = 4
42
- mdadm = shell_out!("mdadm --detail --test #{@new_resource.raid_device}", :returns => [0, device_not_found])
42
+ mdadm = shell_out!("mdadm --detail --test #{new_resource.raid_device}", :returns => [0, device_not_found])
43
43
  exists = (mdadm.status == 0)
44
- @current_resource.exists(exists)
44
+ current_resource.exists(exists)
45
45
  end
46
46
 
47
47
  def action_create
48
- unless @current_resource.exists
48
+ unless current_resource.exists
49
49
  converge_by("create RAID device #{new_resource.raid_device}") do
50
- command = "yes | mdadm --create #{@new_resource.raid_device} --level #{@new_resource.level}"
51
- command << " --chunk=#{@new_resource.chunk}" unless @new_resource.level == 1
52
- command << " --metadata=#{@new_resource.metadata}"
53
- command << " --bitmap=#{@new_resource.bitmap}" if @new_resource.bitmap
54
- command << " --layout=#{@new_resource.layout}" if @new_resource.layout
55
- command << " --raid-devices #{@new_resource.devices.length} #{@new_resource.devices.join(" ")}"
56
- Chef::Log.debug("#{@new_resource} mdadm command: #{command}")
50
+ command = "yes | mdadm --create #{new_resource.raid_device} --level #{new_resource.level}"
51
+ command << " --chunk=#{new_resource.chunk}" unless new_resource.level == 1
52
+ command << " --metadata=#{new_resource.metadata}"
53
+ command << " --bitmap=#{new_resource.bitmap}" if new_resource.bitmap
54
+ command << " --layout=#{new_resource.layout}" if new_resource.layout
55
+ command << " --raid-devices #{new_resource.devices.length} #{new_resource.devices.join(" ")}"
56
+ Chef::Log.debug("#{new_resource} mdadm command: #{command}")
57
57
  shell_out!(command)
58
- Chef::Log.info("#{@new_resource} created raid device (#{@new_resource.raid_device})")
58
+ Chef::Log.info("#{new_resource} created raid device (#{new_resource.raid_device})")
59
59
  end
60
60
  else
61
- Chef::Log.debug("#{@new_resource} raid device already exists, skipping create (#{@new_resource.raid_device})")
61
+ Chef::Log.debug("#{new_resource} raid device already exists, skipping create (#{new_resource.raid_device})")
62
62
  end
63
63
  end
64
64
 
65
65
  def action_assemble
66
- unless @current_resource.exists
66
+ unless current_resource.exists
67
67
  converge_by("assemble RAID device #{new_resource.raid_device}") do
68
- command = "yes | mdadm --assemble #{@new_resource.raid_device} #{@new_resource.devices.join(" ")}"
69
- Chef::Log.debug("#{@new_resource} mdadm command: #{command}")
68
+ command = "yes | mdadm --assemble #{new_resource.raid_device} #{new_resource.devices.join(" ")}"
69
+ Chef::Log.debug("#{new_resource} mdadm command: #{command}")
70
70
  shell_out!(command)
71
- Chef::Log.info("#{@new_resource} assembled raid device (#{@new_resource.raid_device})")
71
+ Chef::Log.info("#{new_resource} assembled raid device (#{new_resource.raid_device})")
72
72
  end
73
73
  else
74
- Chef::Log.debug("#{@new_resource} raid device already exists, skipping assemble (#{@new_resource.raid_device})")
74
+ Chef::Log.debug("#{new_resource} raid device already exists, skipping assemble (#{new_resource.raid_device})")
75
75
  end
76
76
  end
77
77
 
78
78
  def action_stop
79
- if @current_resource.exists
79
+ if current_resource.exists
80
80
  converge_by("stop RAID device #{new_resource.raid_device}") do
81
- command = "yes | mdadm --stop #{@new_resource.raid_device}"
82
- Chef::Log.debug("#{@new_resource} mdadm command: #{command}")
81
+ command = "yes | mdadm --stop #{new_resource.raid_device}"
82
+ Chef::Log.debug("#{new_resource} mdadm command: #{command}")
83
83
  shell_out!(command)
84
- Chef::Log.info("#{@new_resource} stopped raid device (#{@new_resource.raid_device})")
84
+ Chef::Log.info("#{new_resource} stopped raid device (#{new_resource.raid_device})")
85
85
  end
86
86
  else
87
- Chef::Log.debug("#{@new_resource} raid device doesn't exist (#{@new_resource.raid_device}) - not stopping")
87
+ Chef::Log.debug("#{new_resource} raid device doesn't exist (#{new_resource.raid_device}) - not stopping")
88
88
  end
89
89
  end
90
90
 
@@ -116,9 +116,9 @@ class Chef
116
116
 
117
117
  def remount_command
118
118
  if !(@new_resource.options.nil? || @new_resource.options.empty?)
119
- return "mount -o remount,#{@new_resource.options.join(',')} #{@new_resource.device} #{@new_resource.mount_point}"
119
+ "mount -o remount,#{@new_resource.options.join(',')} #{@new_resource.device} #{@new_resource.mount_point}"
120
120
  else
121
- return "mount -o remount #{@new_resource.device} #{@new_resource.mount_point}"
121
+ "mount -o remount #{@new_resource.device} #{@new_resource.mount_point}"
122
122
  end
123
123
  end
124
124
 
@@ -47,7 +47,7 @@ class Chef
47
47
  elsif @new_resource.mount_point != "none" && !::File.exists?(@new_resource.mount_point)
48
48
  raise Chef::Exceptions::Mount, "Mount point #{@new_resource.mount_point} does not exist"
49
49
  end
50
- return true
50
+ true
51
51
  end
52
52
 
53
53
  def enabled?
@@ -129,7 +129,7 @@ class Chef
129
129
  end
130
130
 
131
131
  def remount_command
132
- return "mount -o remount,#{@new_resource.options.join(',')} #{@new_resource.mount_point}"
132
+ "mount -o remount,#{@new_resource.options.join(',')} #{@new_resource.mount_point}"
133
133
  end
134
134
 
135
135
  def remount_fs
@@ -37,7 +37,7 @@ class Chef
37
37
  converge_by("re-run ohai and merge results into node attributes") do
38
38
  ohai = ::Ohai::System.new
39
39
 
40
- # If @new_resource.plugin is nil, ohai will reload all the plugins
40
+ # If new_resource.plugin is nil, ohai will reload all the plugins
41
41
  # Otherwise it will only reload the specified plugin
42
42
  # Note that any changes to plugins, or new plugins placed on
43
43
  # the path are picked up by ohai.
@@ -34,16 +34,16 @@ class Chef
34
34
  end
35
35
 
36
36
  def load_current_resource
37
- @current_resource = Chef::Resource::OsxProfile.new(@new_resource.name)
38
- @current_resource.profile_name(@new_resource.profile_name)
37
+ @current_resource = Chef::Resource::OsxProfile.new(new_resource.name)
38
+ current_resource.profile_name(new_resource.profile_name)
39
39
 
40
40
  all_profiles = get_installed_profiles
41
- @new_resource.profile(
42
- @new_resource.profile ||
43
- @new_resource.profile_name
41
+ new_resource.profile(
42
+ new_resource.profile ||
43
+ new_resource.profile_name
44
44
  )
45
45
 
46
- @new_profile_hash = get_profile_hash(@new_resource.profile)
46
+ @new_profile_hash = get_profile_hash(new_resource.profile)
47
47
  if @new_profile_hash
48
48
  @new_profile_hash["PayloadUUID"] =
49
49
  config_uuid(@new_profile_hash)
@@ -52,8 +52,8 @@ class Chef
52
52
  if @new_profile_hash
53
53
  @new_profile_identifier = @new_profile_hash["PayloadIdentifier"]
54
54
  else
55
- @new_profile_identifier = @new_resource.identifier ||
56
- @new_resource.profile_name
55
+ @new_profile_identifier = new_resource.identifier ||
56
+ new_resource.profile_name
57
57
  end
58
58
 
59
59
  current_profile = nil
@@ -62,7 +62,7 @@ class Chef
62
62
  item["ProfileIdentifier"] == @new_profile_identifier
63
63
  end
64
64
  end
65
- @current_resource.profile(current_profile)
65
+ current_resource.profile(current_profile)
66
66
  end
67
67
 
68
68
  def define_resource_requirements
@@ -75,7 +75,7 @@ class Chef
75
75
  end
76
76
  a.failure_message RuntimeError, "when removing using the identifier attribute, it must match the profile identifier"
77
77
  else
78
- new_profile_name = @new_resource.profile_name
78
+ new_profile_name = new_resource.profile_name
79
79
  a.assertion do
80
80
  !new_profile_name.end_with?(".mobileconfig") &&
81
81
  /^\w+(?:(\.| )\w+)+$/.match(new_profile_name)
@@ -128,21 +128,21 @@ class Chef
128
128
  raise Chef::Exceptions::FileNotFound, error_string
129
129
  end
130
130
  cookbook_profile = cache_cookbook_profile(new_profile)
131
- return read_plist(cookbook_profile)
131
+ read_plist(cookbook_profile)
132
132
  else
133
- return nil
133
+ nil
134
134
  end
135
135
  end
136
136
 
137
137
  def cookbook_file_available?(cookbook_file)
138
138
  run_context.has_cookbook_file_in_cookbook?(
139
- @new_resource.cookbook_name, cookbook_file
139
+ new_resource.cookbook_name, cookbook_file
140
140
  )
141
141
  end
142
142
 
143
143
  def get_cache_dir
144
144
  cache_dir = Chef::FileCache.create_cache_path(
145
- "profiles/#{@new_resource.cookbook_name}"
145
+ "profiles/#{new_resource.cookbook_name}"
146
146
  )
147
147
  end
148
148
 
@@ -150,7 +150,7 @@ class Chef
150
150
  Chef::FileCache.create_cache_path(
151
151
  ::File.join(
152
152
  "profiles",
153
- @new_resource.cookbook_name,
153
+ new_resource.cookbook_name,
154
154
  ::File.dirname(cookbook_file)
155
155
  )
156
156
  )
@@ -161,7 +161,7 @@ class Chef
161
161
  ),
162
162
  run_context
163
163
  )
164
- remote_file.cookbook_name = @new_resource.cookbook_name
164
+ remote_file.cookbook_name = new_resource.cookbook_name
165
165
  remote_file.source(cookbook_file)
166
166
  remote_file.backup(false)
167
167
  remote_file.run_action(:create)
@@ -170,9 +170,9 @@ class Chef
170
170
 
171
171
  def get_profile_hash(new_profile)
172
172
  if new_profile.is_a?(Hash)
173
- return new_profile
173
+ new_profile
174
174
  elsif new_profile.is_a?(String)
175
- return load_profile_hash(new_profile)
175
+ load_profile_hash(new_profile)
176
176
  end
177
177
  end
178
178
 
@@ -185,8 +185,8 @@ class Chef
185
185
  end
186
186
 
187
187
  def write_profile_to_disk
188
- @new_resource.path(Chef::FileCache.create_cache_path("profiles"))
189
- tempfile = Chef::FileContentManagement::Tempfile.new(@new_resource).tempfile
188
+ new_resource.path(Chef::FileCache.create_cache_path("profiles"))
189
+ tempfile = Chef::FileContentManagement::Tempfile.new(new_resource).tempfile
190
190
  tempfile.write(@new_profile_hash.to_plist)
191
191
  tempfile.close
192
192
  tempfile.path
@@ -240,13 +240,13 @@ class Chef
240
240
 
241
241
  def profile_installed?
242
242
  # Profile Identifier and UUID must match a currently installed profile
243
- if @current_resource.profile.nil? || @current_resource.profile.empty?
243
+ if current_resource.profile.nil? || current_resource.profile.empty?
244
244
  false
245
245
  else
246
- if @new_resource.action.include?(:remove)
246
+ if new_resource.action.include?(:remove)
247
247
  true
248
248
  else
249
- @current_resource.profile["ProfileUUID"] ==
249
+ current_resource.profile["ProfileUUID"] ==
250
250
  @new_profile_hash["PayloadUUID"]
251
251
  end
252
252
  end