vagrant-clone 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (306) hide show
  1. checksums.yaml +4 -4
  2. data/.idea/.rakeTasks +7 -0
  3. data/.idea/inspectionProfiles/Project_Default.xml +6 -0
  4. data/.idea/misc.xml +4 -0
  5. data/.idea/modules.xml +8 -0
  6. data/.idea/runConfigurations/clone.xml +21 -0
  7. data/.idea/runConfigurations/libvirt.xml +21 -0
  8. data/.idea/vagrant-clone.iml +114 -0
  9. data/.idea/vcs.xml +6 -0
  10. data/.idea/workspace.xml +948 -0
  11. data/Gemfile +9 -3
  12. data/Gemfile.lock +123 -37
  13. data/Rakefile +2 -1
  14. data/Vagrantfile +9 -0
  15. data/cookbooks/apt/CHANGELOG.md +321 -0
  16. data/cookbooks/apt/CONTRIBUTING.md +2 -0
  17. data/cookbooks/apt/MAINTAINERS.md +15 -0
  18. data/cookbooks/apt/README.md +250 -0
  19. data/cookbooks/apt/attributes/default.rb +57 -0
  20. data/cookbooks/apt/files/15update-stamp +1 -0
  21. data/cookbooks/apt/files/apt-proxy-v2.conf +50 -0
  22. data/cookbooks/apt/libraries/helpers.rb +49 -0
  23. data/cookbooks/apt/libraries/matchers.rb +16 -0
  24. data/cookbooks/apt/metadata.json +1 -0
  25. data/cookbooks/apt/recipes/cacher-client.rb +52 -0
  26. data/cookbooks/apt/recipes/cacher-ng.rb +39 -0
  27. data/cookbooks/apt/recipes/default.rb +93 -0
  28. data/cookbooks/apt/recipes/unattended-upgrades.rb +47 -0
  29. data/cookbooks/apt/resources/preference.rb +90 -0
  30. data/cookbooks/apt/templates/01proxy.erb +11 -0
  31. data/cookbooks/apt/templates/10dpkg-options.erb +8 -0
  32. data/cookbooks/apt/templates/10recommends.erb +3 -0
  33. data/cookbooks/apt/templates/20auto-upgrades.erb +5 -0
  34. data/cookbooks/apt/templates/50unattended-upgrades.erb +75 -0
  35. data/cookbooks/apt/templates/acng.conf.erb +275 -0
  36. data/cookbooks/apt/templates/unattended-upgrades.seed.erb +1 -0
  37. data/cookbooks/build-essential/.foodcritic +1 -0
  38. data/cookbooks/build-essential/CHANGELOG.md +257 -0
  39. data/cookbooks/build-essential/CONTRIBUTING.md +2 -0
  40. data/cookbooks/build-essential/MAINTAINERS.md +15 -0
  41. data/cookbooks/build-essential/README.md +134 -0
  42. data/cookbooks/build-essential/attributes/default.rb +21 -0
  43. data/cookbooks/build-essential/libraries/matchers.rb +9 -0
  44. data/cookbooks/build-essential/metadata.json +1 -0
  45. data/cookbooks/build-essential/recipes/_windows.rb +53 -0
  46. data/cookbooks/build-essential/recipes/default.rb +24 -0
  47. data/cookbooks/build-essential/resources/build_essential.rb +106 -0
  48. data/cookbooks/build-essential/resources/xcode_command_line_tools.rb +61 -0
  49. data/cookbooks/compat_resource/CHANGELOG.md +53 -0
  50. data/cookbooks/compat_resource/CONTRIBUTING.md +2 -0
  51. data/cookbooks/compat_resource/MAINTAINERS.md +16 -0
  52. data/cookbooks/compat_resource/README.md +60 -0
  53. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/constants.rb +47 -0
  54. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/delayed_evaluator.rb +40 -0
  55. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/dsl/core.rb +73 -0
  56. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/dsl/declare_resource.rb +315 -0
  57. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/dsl/platform_introspection.rb +292 -0
  58. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/dsl/recipe.rb +37 -0
  59. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/dsl/universal.rb +70 -0
  60. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/mixin/lazy_module_include.rb +98 -0
  61. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/mixin/notifying_block.rb +74 -0
  62. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/mixin/params_validate.rb +510 -0
  63. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/mixin/powershell_out.rb +117 -0
  64. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/mixin/properties.rb +328 -0
  65. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/property.rb +713 -0
  66. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/provider/apt_repository.rb +269 -0
  67. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/provider/apt_update.rb +105 -0
  68. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/provider/noop.rb +56 -0
  69. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/provider/support/yum_repo.erb +132 -0
  70. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/provider/systemd_unit.rb +253 -0
  71. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/provider/yum_repository.rb +136 -0
  72. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/provider.rb +164 -0
  73. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/resource/action_class.rb +114 -0
  74. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/resource/apt_repository.rb +65 -0
  75. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/resource/apt_update.rb +52 -0
  76. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/resource/systemd_unit.rb +81 -0
  77. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/resource/yum_repository.rb +97 -0
  78. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/resource.rb +214 -0
  79. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef/chef/resource_builder.rb +174 -0
  80. data/cookbooks/compat_resource/files/lib/chef_compat/copied_from_chef.rb +29 -0
  81. data/cookbooks/compat_resource/files/lib/chef_compat/mixin/properties.rb +8 -0
  82. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/exceptions.rb +10 -0
  83. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/log.rb +30 -0
  84. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/mixin/params_validate.rb +17 -0
  85. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/node.rb +9 -0
  86. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/property.rb +15 -0
  87. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/provider.rb +65 -0
  88. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/recipe.rb +118 -0
  89. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/recipe_hook.rb +20 -0
  90. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/resource/lwrp_base.rb +60 -0
  91. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/resource.rb +156 -0
  92. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/resource_builder.rb +167 -0
  93. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/resource_collection/resource_list.rb +49 -0
  94. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/resource_collection/resource_set.rb +49 -0
  95. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/resource_collection.rb +103 -0
  96. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/run_context.rb +691 -0
  97. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef/runner.rb +153 -0
  98. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches/chef.rb +33 -0
  99. data/cookbooks/compat_resource/files/lib/chef_compat/monkeypatches.rb +41 -0
  100. data/cookbooks/compat_resource/files/lib/chef_compat/property.rb +6 -0
  101. data/cookbooks/compat_resource/files/lib/chef_compat/recipe.rb +8 -0
  102. data/cookbooks/compat_resource/files/lib/chef_compat/resource/lwrp_base.rb +44 -0
  103. data/cookbooks/compat_resource/files/lib/chef_compat/resource.rb +56 -0
  104. data/cookbooks/compat_resource/files/lib/chef_upstream_version.rb +3 -0
  105. data/cookbooks/compat_resource/files/lib/compat_resource.rb +35 -0
  106. data/cookbooks/compat_resource/libraries/autoload.rb +31 -0
  107. data/cookbooks/compat_resource/metadata.json +1 -0
  108. data/cookbooks/inifile_chef_gem/CHANGELOG.md +11 -0
  109. data/cookbooks/inifile_chef_gem/README.md +46 -0
  110. data/cookbooks/inifile_chef_gem/metadata.json +51 -0
  111. data/cookbooks/inifile_chef_gem/metadata.rb +11 -0
  112. data/cookbooks/inifile_chef_gem/resources/default.rb +28 -0
  113. data/cookbooks/mariadb/CHANGELOG.md +332 -0
  114. data/cookbooks/mariadb/README.md +225 -0
  115. data/cookbooks/mariadb/attributes/default.rb +199 -0
  116. data/cookbooks/mariadb/libraries/mariadb_conn_helper.rb +53 -0
  117. data/cookbooks/mariadb/libraries/mariadb_helper.rb +216 -0
  118. data/cookbooks/mariadb/libraries/matchers.rb +21 -0
  119. data/cookbooks/mariadb/metadata.json +1 -0
  120. data/cookbooks/mariadb/providers/configuration.rb +39 -0
  121. data/cookbooks/mariadb/recipes/_audit_plugin.rb +63 -0
  122. data/cookbooks/mariadb/recipes/_debian_galera.rb +62 -0
  123. data/cookbooks/mariadb/recipes/_debian_server.rb +78 -0
  124. data/cookbooks/mariadb/recipes/_mariadb_repository.rb +29 -0
  125. data/cookbooks/mariadb/recipes/_redhat_client.rb +27 -0
  126. data/cookbooks/mariadb/recipes/_redhat_galera.rb +55 -0
  127. data/cookbooks/mariadb/recipes/_redhat_server.rb +58 -0
  128. data/cookbooks/mariadb/recipes/client.rb +47 -0
  129. data/cookbooks/mariadb/recipes/config.rb +115 -0
  130. data/cookbooks/mariadb/recipes/default.rb +46 -0
  131. data/cookbooks/mariadb/recipes/devel.rb +41 -0
  132. data/cookbooks/mariadb/recipes/galera.rb +324 -0
  133. data/cookbooks/mariadb/recipes/plugins.rb +3 -0
  134. data/cookbooks/mariadb/recipes/repository.rb +45 -0
  135. data/cookbooks/mariadb/recipes/server.rb +157 -0
  136. data/cookbooks/mariadb/resources/configuration.rb +13 -0
  137. data/cookbooks/mariadb/resources/mysql2_gem.rb +25 -0
  138. data/cookbooks/mariadb/resources/replication.rb +192 -0
  139. data/cookbooks/mariadb/templates/default/conf.d.generic.erb +19 -0
  140. data/cookbooks/mariadb/templates/default/debian.cnf.erb +12 -0
  141. data/cookbooks/mariadb/templates/default/mariadb-server.seed.erb +13 -0
  142. data/cookbooks/mariadb/templates/default/mariadb_grants.erb +42 -0
  143. data/cookbooks/mariadb/templates/default/my.cnf.erb +210 -0
  144. data/cookbooks/mariadb/templates/default/root.cnf.erb +5 -0
  145. data/cookbooks/mingw/.foodcritic +1 -0
  146. data/cookbooks/mingw/CHANGELOG.md +50 -0
  147. data/cookbooks/mingw/CONTRIBUTING.md +2 -0
  148. data/cookbooks/mingw/MAINTAINERS.md +14 -0
  149. data/cookbooks/mingw/README.md +133 -0
  150. data/cookbooks/mingw/files/default/bash.bat +17 -0
  151. data/cookbooks/mingw/files/default/custom-upgrade.sh +23 -0
  152. data/cookbooks/mingw/files/default/custom_prefix.sh +13 -0
  153. data/cookbooks/mingw/files/default/pthread.h +719 -0
  154. data/cookbooks/mingw/files/default/time.h +297 -0
  155. data/cookbooks/mingw/libraries/_helper.rb +38 -0
  156. data/cookbooks/mingw/metadata.json +1 -0
  157. data/cookbooks/mingw/recipes/default.rb +19 -0
  158. data/cookbooks/mingw/resources/get.rb +56 -0
  159. data/cookbooks/mingw/resources/msys2_package.rb +139 -0
  160. data/cookbooks/mingw/resources/tdm_gcc.rb +114 -0
  161. data/cookbooks/ohai/.foodcritic +2 -0
  162. data/cookbooks/ohai/CHANGELOG.md +166 -0
  163. data/cookbooks/ohai/CONTRIBUTING.md +2 -0
  164. data/cookbooks/ohai/MAINTAINERS.md +15 -0
  165. data/cookbooks/ohai/README.md +134 -0
  166. data/cookbooks/ohai/libraries/matchers.rb +41 -0
  167. data/cookbooks/ohai/metadata.json +1 -0
  168. data/cookbooks/ohai/recipes/default.rb +20 -0
  169. data/cookbooks/ohai/resources/hint.rb +55 -0
  170. data/cookbooks/ohai/resources/plugin.rb +117 -0
  171. data/cookbooks/selinux_policy/.gitignore +51 -0
  172. data/cookbooks/selinux_policy/.kitchen.yml +25 -0
  173. data/cookbooks/selinux_policy/.rubocop.yml +2 -0
  174. data/cookbooks/selinux_policy/.travis.yml +26 -0
  175. data/cookbooks/selinux_policy/Berksfile +8 -0
  176. data/cookbooks/selinux_policy/CHANGELOG.md +155 -0
  177. data/cookbooks/selinux_policy/LICENSE +13 -0
  178. data/cookbooks/selinux_policy/README.md +217 -0
  179. data/cookbooks/selinux_policy/Rakefile +68 -0
  180. data/cookbooks/selinux_policy/TESTING.md +2 -0
  181. data/cookbooks/selinux_policy/Thorfile +12 -0
  182. data/cookbooks/selinux_policy/attributes/default.rb +5 -0
  183. data/cookbooks/selinux_policy/chefignore +102 -0
  184. data/cookbooks/selinux_policy/libraries/helper-disabled.rb +29 -0
  185. data/cookbooks/selinux_policy/libraries/matchers.rb +57 -0
  186. data/cookbooks/selinux_policy/metadata.json +58 -0
  187. data/cookbooks/selinux_policy/metadata.rb +20 -0
  188. data/cookbooks/selinux_policy/providers/boolean.rb +28 -0
  189. data/cookbooks/selinux_policy/providers/fcontext.rb +78 -0
  190. data/cookbooks/selinux_policy/providers/module.rb +81 -0
  191. data/cookbooks/selinux_policy/providers/permissive.rb +26 -0
  192. data/cookbooks/selinux_policy/providers/port.rb +58 -0
  193. data/cookbooks/selinux_policy/recipes/default.rb +9 -0
  194. data/cookbooks/selinux_policy/recipes/install.rb +32 -0
  195. data/cookbooks/selinux_policy/resources/boolean.rb +8 -0
  196. data/cookbooks/selinux_policy/resources/fcontext.rb +8 -0
  197. data/cookbooks/selinux_policy/resources/module.rb +21 -0
  198. data/cookbooks/selinux_policy/resources/permissive.rb +6 -0
  199. data/cookbooks/selinux_policy/resources/port.rb +9 -0
  200. data/cookbooks/seven_zip/CHANGELOG.md +30 -0
  201. data/cookbooks/seven_zip/README.md +108 -0
  202. data/cookbooks/seven_zip/attributes/default.rb +31 -0
  203. data/cookbooks/seven_zip/libraries/matchers.rb +33 -0
  204. data/cookbooks/seven_zip/metadata.json +1 -0
  205. data/cookbooks/seven_zip/providers/archive.rb +68 -0
  206. data/cookbooks/seven_zip/recipes/default.rb +41 -0
  207. data/cookbooks/seven_zip/resources/archive.rb +29 -0
  208. data/cookbooks/windows/.foodcritic +2 -0
  209. data/cookbooks/windows/CHANGELOG.md +528 -0
  210. data/cookbooks/windows/CONTRIBUTING.md +2 -0
  211. data/cookbooks/windows/MAINTAINERS.md +21 -0
  212. data/cookbooks/windows/README.md +803 -0
  213. data/cookbooks/windows/attributes/default.rb +21 -0
  214. data/cookbooks/windows/files/dism_features.rb +45 -0
  215. data/cookbooks/windows/libraries/matchers.rb +586 -0
  216. data/cookbooks/windows/libraries/powershell_helper.rb +53 -0
  217. data/cookbooks/windows/libraries/registry_helper.rb +356 -0
  218. data/cookbooks/windows/libraries/version.rb +207 -0
  219. data/cookbooks/windows/libraries/version_helper.rb +79 -0
  220. data/cookbooks/windows/libraries/windows_helper.rb +174 -0
  221. data/cookbooks/windows/libraries/windows_privileged.rb +103 -0
  222. data/cookbooks/windows/libraries/wmi_helper.rb +32 -0
  223. data/cookbooks/windows/metadata.json +1 -0
  224. data/cookbooks/windows/recipes/default.rb +21 -0
  225. data/cookbooks/windows/resources/auto_run.rb +46 -0
  226. data/cookbooks/windows/resources/certificate.rb +166 -0
  227. data/cookbooks/windows/resources/certificate_binding.rb +128 -0
  228. data/cookbooks/windows/resources/feature.rb +82 -0
  229. data/cookbooks/windows/resources/feature_dism.rb +108 -0
  230. data/cookbooks/windows/resources/feature_powershell.rb +70 -0
  231. data/cookbooks/windows/resources/feature_servermanagercmd.rb +76 -0
  232. data/cookbooks/windows/resources/font.rb +80 -0
  233. data/cookbooks/windows/resources/http_acl.rb +110 -0
  234. data/cookbooks/windows/resources/pagefile.rb +152 -0
  235. data/cookbooks/windows/resources/path.rb +54 -0
  236. data/cookbooks/windows/resources/printer.rb +103 -0
  237. data/cookbooks/windows/resources/printer_port.rb +101 -0
  238. data/cookbooks/windows/resources/share.rb +291 -0
  239. data/cookbooks/windows/resources/shortcut.rb +53 -0
  240. data/cookbooks/windows/resources/task.rb +384 -0
  241. data/cookbooks/windows/resources/zipfile.rb +125 -0
  242. data/cookbooks/yum/.foodcritic +1 -0
  243. data/cookbooks/yum/CHANGELOG.md +351 -0
  244. data/cookbooks/yum/CONTRIBUTING.md +2 -0
  245. data/cookbooks/yum/MAINTAINERS.md +16 -0
  246. data/cookbooks/yum/README.md +125 -0
  247. data/cookbooks/yum/attributes/main.rb +103 -0
  248. data/cookbooks/yum/libraries/matchers.rb +9 -0
  249. data/cookbooks/yum/metadata.json +1 -0
  250. data/cookbooks/yum/recipes/default.rb +26 -0
  251. data/cookbooks/yum/recipes/dnf_yum_compat.rb +29 -0
  252. data/cookbooks/yum/resources/globalconfig.rb +119 -0
  253. data/cookbooks/yum/templates/.DS_Store +0 -0
  254. data/cookbooks/yum/templates/main.erb +276 -0
  255. data/cookbooks/yum-epel/CHANGELOG.md +138 -0
  256. data/cookbooks/yum-epel/CONTRIBUTING.md +2 -0
  257. data/cookbooks/yum-epel/MAINTAINERS.md +19 -0
  258. data/cookbooks/yum-epel/README.md +172 -0
  259. data/cookbooks/yum-epel/attributes/default.rb +8 -0
  260. data/cookbooks/yum-epel/attributes/epel-debuginfo.rb +15 -0
  261. data/cookbooks/yum-epel/attributes/epel-source.rb +15 -0
  262. data/cookbooks/yum-epel/attributes/epel-testing-debuginfo.rb +15 -0
  263. data/cookbooks/yum-epel/attributes/epel-testing-source.rb +15 -0
  264. data/cookbooks/yum-epel/attributes/epel-testing.rb +15 -0
  265. data/cookbooks/yum-epel/attributes/epel.rb +21 -0
  266. data/cookbooks/yum-epel/metadata.json +1 -0
  267. data/cookbooks/yum-epel/recipes/default.rb +27 -0
  268. data/cookbooks/yum-scl/.kitchen.dokken.yml +24 -0
  269. data/cookbooks/yum-scl/.kitchen.yml +24 -0
  270. data/cookbooks/yum-scl/.rubocop.yml +6 -0
  271. data/cookbooks/yum-scl/.travis.yml +28 -0
  272. data/cookbooks/yum-scl/Berksfile +3 -0
  273. data/cookbooks/yum-scl/Berksfile.lock +25 -0
  274. data/cookbooks/yum-scl/CHANGELOG.md +11 -0
  275. data/cookbooks/yum-scl/Gemfile +46 -0
  276. data/cookbooks/yum-scl/README.md +76 -0
  277. data/cookbooks/yum-scl/attributes/centos.rb +83 -0
  278. data/cookbooks/yum-scl/attributes/default.rb +15 -0
  279. data/cookbooks/yum-scl/attributes/scientific.rb +1 -0
  280. data/cookbooks/yum-scl/files/default/RPM-GPG-KEY-CentOS-SIG-SCLo +20 -0
  281. data/cookbooks/yum-scl/libraries/yum_scl_helper.rb +33 -0
  282. data/cookbooks/yum-scl/metadata.json +42 -0
  283. data/cookbooks/yum-scl/metadata.rb +12 -0
  284. data/cookbooks/yum-scl/recipes/chef_install.rb +52 -0
  285. data/cookbooks/yum-scl/recipes/default.rb +17 -0
  286. data/cookbooks/yum-scl/recipes/native_install.rb +35 -0
  287. data/lib/vagrant-clone/command/clone.rb +66 -61
  288. data/lib/vagrant-clone/errors.rb +61 -0
  289. data/lib/vagrant-clone/util/clone_manager_base.rb +69 -0
  290. data/lib/vagrant-clone/util/clone_managers/docker.rb +31 -0
  291. data/lib/vagrant-clone/util/clone_managers/libvirt.rb +254 -0
  292. data/lib/vagrant-clone/util/vagrantfile_managers/docker.rb +154 -0
  293. data/lib/vagrant-clone/util/vagrantfile_managers/libvirt.rb +159 -0
  294. data/lib/vagrant-clone/version.rb +2 -2
  295. data/lib/vagrant-clone.rb +6 -6
  296. data/libvirt.txt +7 -0
  297. data/performance_testing.rb +165 -0
  298. data/results.txt +45 -0
  299. data/scripts/create_box.sh +134 -0
  300. data/test.rb +92 -0
  301. data/tools/create_box.sh +130 -0
  302. data/vagrant-clone.gemspec +7 -7
  303. metadata +296 -5
  304. data/lib/vagrant-clone/command/errors.rb +0 -16
  305. data/lib/vagrant-clone/command/provider/docker.rb +0 -13
  306. data/lib/vagrant-clone/utils/vagrantfile_manager.rb +0 -47
@@ -0,0 +1,528 @@
1
+ # windows Cookbook CHANGELOG
2
+
3
+ This file is used to list changes made in each version of the windows cookbook.
4
+
5
+ ## 3.1.0 (2017-05-30)
6
+
7
+ - Updated resource documentation for windows_pagefile
8
+ - Declare windows_feature as why-runnable
9
+ - Remove action_class.class_eval usage and require 12.7+ as class_eval is causing issues with later versions of Chef
10
+
11
+ ## 3.0.5 (2017-04-07)
12
+
13
+ - Add support for windows_task resource to run on non-English editions of Windows
14
+ - Ensure chef-client 12.6 compatibility with action_class.class_eval
15
+
16
+ ## 3.0.4 (2017-03-29)
17
+
18
+ - restoring the `cached_file` helper as downstream cookbooks use it.
19
+
20
+ ## 3.0.3 (2017-03-28)
21
+
22
+ - Correct a typo in a Log message
23
+
24
+ ## 3.0.2 (2017-03-21)
25
+
26
+ - Fix `windows_zipfile` resource to properly download and cache the zip archives
27
+
28
+ ## 3.0.1 (2017-03-17)
29
+
30
+ - Fix `windows_share` to be fully idempotent. Fixes #447
31
+
32
+ ## 3.0.0 (2017-03-15)
33
+
34
+ **Warning** This release includes multiple breaking changes as we refactored all existing resources and resolved many longstanding bugs. We highly recommend exercising caution and fully testing this new version before rolling it out to a production environment.
35
+
36
+ ### Breaking changes
37
+
38
+ - This cookbook now requires Chef 12.6 or later and we highly recommend even more recent Chef 12 releases as they resolve critical Windows bugs and include new Windows specific functionality.
39
+ - The windows_package resource has been removed as it is built into chef-client 12.6+ and the built in version is faster / more robust.
40
+ - The powershell out helper has been removed as it is now included in chef-client 12.6+
41
+ - The default recipe no longer installs the various Windows rubygems required for non-omnibus chef-client installs. This was a leftover from Chef 10 and is no longer necessary, or desired, as we ship these gems in every Windows chef release.
42
+ - windows_feature has been heavily refactored and in doing so the method used to control the underlying providers has changed. You can no longer specify which windows_feature provider to use by setting `node['windows']['feature_provider']` or by setting the `provider` property on the resource itself. Instead you must set `install_method` to specify the correct underlying installation method. You can also now reference the resources directly by using `windows_feature_servermanagercmd`, `windows_feature_powershell` or `windows_feature_dism` instead of `windows_feature`
43
+
44
+ - Windows_font's `file` property has been renamed to `name` to avoid collisions with the Chef file resource.
45
+
46
+ ### Other Changes
47
+
48
+ - All LWRPs in this cookbook have been refactored to be custom resources
49
+ - windows_path, windows_shortcut, and windows_zipfile have been updated to be idempotent with support for why-run mode and proper notification when the resources actually update
50
+ - windows_pagefile now validates the name of the pagefile to avoid cryptic error messages
51
+ - A new `share` resource has been added for setting up Windows shares
52
+ - TrustedPeople certificate store has been added to the list of allowed store_names in the certificate resources
53
+ - version helper constant definitions has been improved
54
+ - A new `all` property has been added to the Windows feature resource to install all dependent features. See the windows feature test recipe for usage examples.
55
+ - Windows feature now accepts an array of features, which greatly speeds up feature installs and simplifies recipe code
56
+ - The path resource now accepts paths with either forward slashes or backslashes and correctly adds the path using Windows style backslash.
57
+ - The powershell provider for windows_feature resource has been fixed to properly import ServerManager in the :remove action
58
+ - Testing has been switched from a Rakefile to the new Delivery local mode
59
+ - Several issues with testing the resources on non-Windows hosts in ChefSpec have been resolved
60
+ - A new `source` property has been added to the windows_feature_powershell resource
61
+ - Additional test suites have been added to Test Kitchen to cover all resources and those test suites are now being executed in AppVeyer on every PR
62
+ - Travis CI testing has been removed and all testing is being performed in AppVeyer
63
+
64
+ ## 2.1.1 (2016-11-23)
65
+
66
+ - Make sure the ohai plugin is available when installing features
67
+
68
+ ## 2.1.0 (2016-11-22)
69
+
70
+ - Reduce expensive executions of dism in windows_feature by using a new Ohai plugin
71
+ - Add guard around chef_version metadata for Opsworks and older Chef 12 clients
72
+ - Update the rakefile to the latest
73
+ - Add deprecation dates for the windows_package and powershell functionality that has been moved to core Chef. These will be removed 4/17 when we release Chef 13
74
+ - Provide helper method to get windows version info
75
+ - Allow defining http acl using SDDL
76
+
77
+ ## 2.0.2 (2016-09-07)
78
+
79
+ - Added the powershell_out mixin back to allow for Chef 12.1-12.3 compatibility
80
+ - Set the dependency back to Chef 12.1
81
+
82
+ ## 2.0.1 (2016-09-07)
83
+
84
+ - Clarify the platforms we support in the readme
85
+ - Require Chef 12.4 which included powershell_out
86
+
87
+ ## 2.0.0 (2016-09-07)
88
+
89
+ This cookbook now requires Chef 12.1+. Resources (lwrps) that have been moved into the chef-client have been removed from this cookbook. While the functionality in the chef-client is similar, and in many cases improved, the names and properties have changed in some cases. Make sure to check <https://docs.chef.io/resources.html> for full documentation on each of these resources, and as usual carefully test your cookbooks before upgrading to this new release.
90
+
91
+ ### Removed resources and helpers:
92
+
93
+ - windows_reboot provider
94
+ - windows_batch provider
95
+ - windows_registry provider
96
+ - Powershell out for only_if / not_if statements
97
+ - Windows Architecture Helper
98
+ - Reboot handler and the dependency on the chef_handler cookbook
99
+
100
+ #### Changes resource behavior
101
+
102
+ - For Chef clients 12.6 and later the windows_package provider will no longer be used as windows_package logic is now included in Chef. Chef 12.1 - 12.5.1 clients will continue to default to the windows_package provider in this cookbook for full compatibility.
103
+
104
+ #### Additional changes
105
+
106
+ - Updated and expanded testing
107
+ - Fixed the windows_feature powershell provider to run on Windows 2008 / 2008 R2
108
+ - Added TrustedPublisher as a valid cert store_name
109
+ - Updated the certificate_binding resource to respect the app_id property
110
+ - Added why-run support to the auto_run resource
111
+
112
+ ## 1.44.3 (2016-08-16)
113
+
114
+ - Remove support for ChefSpec <4.1 in the matchers
115
+ - Add missing Chefspec matchers
116
+
117
+ ## 1.44.2 (2016-08-15)
118
+
119
+ - Add missing windows_font matcher
120
+ - Add chef_version to the metadata
121
+ - Switch from Rubocop to Cookstyle and use our improved Rakefile
122
+ - Remove test deps from the Gemfile that are in ChefDK
123
+
124
+ ## v1.44.1
125
+
126
+ - [PR 375](https://github.com/chef-cookbooks/windows/pull/375) - Fix comparison of string to number in platform_version
127
+ - [PR 376](https://github.com/chef-cookbooks/windows/pull/376) - Switch to cookstyle, update gem deps and other minor stuff
128
+ - [PR 377](https://github.com/chef-cookbooks/windows/pull/377) - add test and check for feature installation through powershell
129
+
130
+ ## v1.44.0
131
+
132
+ - [PR 372](https://github.com/chef-cookbooks/windows/pull/372) - Support Server 2008 for feature installs via PowerShell
133
+
134
+ ## v1.43.0
135
+
136
+ - [PR 369](https://github.com/chef-cookbooks/windows/pull/369) - Add a enable_windows_task matcher
137
+
138
+ ## v1.42.0
139
+
140
+ - [PR 365](https://github.com/chef-cookbooks/windows/pull/365) - Escape command quotes when passing to schtasks
141
+
142
+ ## v1.41.0
143
+
144
+ - [PR 364](https://github.com/chef-cookbooks/windows/pull/364) - Configurable font source
145
+
146
+ ## v1.40.0
147
+
148
+ - [PR 357](https://github.com/chef-cookbooks/windows/pull/357) - Fixes for schtasks
149
+ - [PR 359](https://github.com/chef-cookbooks/windows/pull/359) - take bundler out of the appveyor build
150
+ - [PR 356](https://github.com/chef-cookbooks/windows/pull/356) - Misc fixes and updates
151
+ - [PR 355](https://github.com/chef-cookbooks/windows/pull/355) - bump and pin rubocop, fix broken cop
152
+ - [PR 348](https://github.com/chef-cookbooks/windows/pull/348) - Make notify work for `windows_task`
153
+
154
+ ## v1.39.2
155
+
156
+ - [PR 329](https://github.com/chef-cookbooks/windows/pull/329) - Silence `compile_time` warning for `chef_gem`
157
+ - [PR 338](https://github.com/chef-cookbooks/windows/pull/338) - ChefSpec matchers for `windows_certificate`
158
+ - [PR 341](https://github.com/chef-cookbooks/windows/pull/341) - Updated rubocop and FoodCritic compliance
159
+ - [PR 336](https://github.com/chef-cookbooks/windows/pull/336) - Fixed where clause compliance with PS v1/v2
160
+
161
+ ## v1.39.1
162
+
163
+ - [PR 325](https://github.com/chef-cookbooks/windows/pull/325) - Raise an error if a bogus feature is given to the powershell `windows_feature` provider
164
+ - [PR 326](https://github.com/chef-cookbooks/windows/pull/326) - Fix `windows_font` and copy the font file before installation
165
+
166
+ ## v1.39.0
167
+
168
+ - [PR 305](https://github.com/chef-cookbooks/windows/pull/305) - Added `months` attribute to `windows_task` and allow `frequency_modifier` to accept values 'FIRST', 'SECOND', 'THIRD', 'FOURTH', 'LAST', and 'LASTDAY' for monthly frequency
169
+ - [PR 310](https://github.com/chef-cookbooks/windows/pull/310) - Fix `windows_task` breaks when there is a space in the user name
170
+ - [PR 314](https://github.com/chef-cookbooks/windows/pull/314) - fixes reboot handling on some chef versions below 11.12
171
+ - [PR 317](https://github.com/chef-cookbooks/windows/pull/317) - Adds a `disable_windows_task` matcher
172
+ - [PR 311](https://github.com/chef-cookbooks/windows/pull/311) - Implements the `cwd` attribute of `windows_task`
173
+ - [PR 318](https://github.com/chef-cookbooks/windows/pull/318) - Use dsl instead of manual resource instanciation
174
+ - [PR 303](https://github.com/chef-cookbooks/windows/pull/303) - Fix `http_acl` idempotency when user name contains a space
175
+ - [PR 257](https://github.com/chef-cookbooks/windows/pull/257) - Speed up windows_feature dism provider
176
+ - [PR 319](https://github.com/chef-cookbooks/windows/pull/319) - Add a `.kitchen.cloud.yml` for kitchen testing on Azure
177
+ - [PR 315](https://github.com/chef-cookbooks/windows/pull/315) - Deprecate `windows_package` and forward to `Chef::Provider::Package::Windows` when running 12.6 or higher
178
+
179
+ ## v1.38.4
180
+
181
+ - [PR 295](https://github.com/chef-cookbooks/windows/pull/295) - Escape `http_acl` username
182
+ - [PR 293](https://github.com/chef-cookbooks/windows/pull/293) - Separating assignments to `code_script` and `guard_script` as they should be different scripts and not hold the same reference
183
+ - [Issue 298](https://github.com/chef-cookbooks/windows/issues/298) - `windows_certificate_binding` is ignoring `store_name` attribute and always saving to `MY`
184
+ - [Issue 296](https://github.com/chef-cookbooks/windows/pull/302) - Fixes `windows_certificate` idempotentcy on chef 11 clients
185
+
186
+ ## v1.38.3
187
+
188
+ - Make `windows_task` resource idempotent (double quotes need to be single when comparing)
189
+ - [Issue 245](https://github.com/chef-cookbooks/windows/issues/256) - Fix `No resource, method, or local variable named`password' for `Chef::Provider::WindowsTask'` when `interactive_enabled` is `true`
190
+
191
+ ## v1.38.2
192
+
193
+ - Lazy-load windows-pr gem library files. Chef 12.5 no longer includes the windows-pr gem. Earlier versions of this cookbook will not compile on Chef 12.5.
194
+
195
+ ## v1.38.1 (2015-07-28)
196
+
197
+ - Publishing without extended metadata
198
+
199
+ ## v1.38.0 (2015-07-27)
200
+
201
+ - Do not set new_resource.password to nil, Fixes #219, Fixes #220
202
+ - Add `windows_certificate` resource #212
203
+ - Add `windows_http_acl` resource #214
204
+
205
+ ## v1.37.0 (2015-05-14)
206
+
207
+ - fix `windows_package` `Chef.set_resource_priority_array` warning
208
+ - update `windows_task` to support tasks in folders
209
+ - fix `windows_task` delete action
210
+ - replace `windows_task` name attribute with 'task_name'
211
+ - add :end action to 'windows_task'
212
+ - Tasks created with the `windows_task` resource default to the SYSTEM account
213
+ - The force attribute for `windows_task` makes the :create action update the definition.
214
+ - `windows_task` :create action will force an update of the task if the user or command differs from the currently configured setting.
215
+ - add default provider for `windows_feature`
216
+ - add a helper to make sure `WindowsRebootHandler` works in ChefSpec
217
+ - added a source and issues url to the metadata for Supermarket
218
+ - updated the Gemfile and .kitchen.yml to reflect the latest test-kitchen windows guest support
219
+ - started tests using the kitchen-pester verifier
220
+
221
+ ## v1.36.6 (2014-12-18)
222
+
223
+ - reverting all chef_gem compile_time work
224
+
225
+ ## v1.36.5 (2014-12-18)
226
+
227
+ - Fix zipfile provider
228
+
229
+ ## v1.36.4 (2014-12-18)
230
+
231
+ - Fix Chef chef_gem with Chef::Resource::ChefGem.method_defined?(:compile_time)
232
+
233
+ ## v1.36.3 (2014-12-18)
234
+
235
+ - Fix Chef chef_gem below 12.1.0
236
+
237
+ ## v1.36.2 (2014-12-17)
238
+
239
+ - Being explicit about usage of the chef_gem's compile_time property.
240
+ - Eliminating future deprecation warnings in Chef 12.1.0
241
+
242
+ ## v1.36.1 (2014-12-17)
243
+
244
+ - [PR 160](https://github.com/chef-cookbooks/windows/pull/160) - Fix Chef 11.10 / versions without windows_package in core
245
+
246
+ ## v1.36.0 (2014-12-16)
247
+
248
+ - [PR 145](https://github.com/chef-cookbooks/windows/pull/145) - do not fail on non-existant task
249
+ - [PR 144](https://github.com/chef-cookbooks/windows/pull/144) - Add a zip example to the README
250
+ - [PR 110](https://github.com/chef-cookbooks/windows/pull/110) - More zip documentation
251
+ - [PR 148](https://github.com/chef-cookbooks/windows/pull/148) - Add an LWRP for font installation
252
+ - [PR 151](https://github.com/chef-cookbooks/windows/pull/151) - Fix windows_package on Chef 12, add integration tests
253
+ - [PR 129](https://github.com/chef-cookbooks/windows/pull/129) - Add enable/disable actions to task LWRP
254
+ - [PR 115](https://github.com/chef-cookbooks/windows/pull/115) - require Chef::Mixin::PowershellOut before using it
255
+ - [PR 88](https://github.com/chef-cookbooks/windows/pull/88) - Code 1003 from servermanagercmd.exe is valid
256
+
257
+ ## v1.34.8 (2014-10-31)
258
+
259
+ - [Issue 137](https://github.com/chef-cookbooks/windows/issues/137) - windows_path resource breaks with ruby 2.x
260
+
261
+ ## v1.34.6 (2014-09-22)
262
+
263
+ - [Chef-2009](https://github.com/chef/chef/issues/2009) - Patch to work around a regression in [Chef](https://github.com/chef/chef)
264
+
265
+ ## v1.34.2 (2014-08-12)
266
+
267
+ - [Issue 99](https://github.com/chef-cookbooks/windows/issues/99) - Remove rubygems / Internet wmi-lite dependency (PR #108)
268
+
269
+ ## v1.34.0 (2014-08-04)
270
+
271
+ - [Issue 99](https://github.com/chef-cookbooks/windows/issues/99) - Use wmi-lite to fix Chef 11.14.2 break in rdp-ruby-wmi dependency
272
+
273
+ ## v1.32.1 (2014-07-15)
274
+
275
+ - Fixes broken cookbook release
276
+
277
+ ## v1.32.0 (2014-07-11)
278
+
279
+ - Add ChefSpec resource methods to allow notification testing (@sneal)
280
+ - Add use_inline_resources to providers (@micgo)
281
+ - [COOK-4728] - Allow reboot handler to be used as an exception handler
282
+ - [COOK-4620] - Ensure win_friendly_path doesn't error out when ALT_SEPARATOR is nil
283
+
284
+ ## v1.31.0 (2014-05-07)
285
+
286
+ - [COOK-2934] - Add windows_feature support for 2 new DISM attributes: all, source
287
+
288
+ ## v1.30.2 (2014-04-02)
289
+
290
+ - [COOK-4414] - Adding ChefSpec matchers
291
+
292
+ ## v1.30.0 (2014-02-14)
293
+
294
+ - [COOK-3715] - Unable to create a startup task with no login
295
+ - [COOK-4188] - Add powershell_version method to return Powershell version
296
+
297
+ ## v1.12.8 (2014-01-21)
298
+
299
+ - [COOK-3988] Don't unescape URI before constructing it.
300
+
301
+ ## v1.12.6 (2014-01-03)
302
+
303
+ - [COOK-4168] Circular dep on powershell - moving powershell libraries into windows. removing dependency on powershell
304
+
305
+ ## v1.12.4
306
+
307
+ Fixing depend/depends typo in metadata.rb
308
+
309
+ ## v1.12.2
310
+
311
+ ### Bug
312
+
313
+ - **[COOK-4110](https://tickets.chef.io/browse/COOK-4110)** - feature_servermanager installed? method regex bug
314
+
315
+ ## v1.12.0
316
+
317
+ ### Bug
318
+
319
+ - **[COOK-3793](https://tickets.chef.io/browse/COOK-3793)** - parens inside parens of README.md don't render
320
+
321
+ ### New Feature
322
+
323
+ - **[COOK-3714](https://tickets.chef.io/browse/COOK-3714)** - Powershell features provider and delete support.
324
+
325
+ ## v1.11.0
326
+
327
+ ### Improvement
328
+
329
+ - **[COOK-3724](https://tickets.chef.io/browse/COOK-3724)** - Rrecommend built-in resources over cookbook resources
330
+ - **[COOK-3515](https://tickets.chef.io/browse/COOK-3515)** - Remove unprofessional comment from library
331
+ - **[COOK-3455](https://tickets.chef.io/browse/COOK-3455)** - Add Windows Server 2012R2 to windows cookbook version helper
332
+
333
+ ### Bug
334
+
335
+ - **[COOK-3542](https://tickets.chef.io/browse/COOK-3542)** - Fix an issue where `windows_zipfile` fails with LoadError
336
+ - **[COOK-3447](https://tickets.chef.io/browse/COOK-3447)** - Allow Overriding Of The Default Reboot Timeout In windows_reboot_handler
337
+ - **[COOK-3382](https://tickets.chef.io/browse/COOK-3382)** - Allow windows_task to create `on_logon` tasks
338
+ - **[COOK-2098](https://tickets.chef.io/browse/COOK-2098)** - Fix and issue where the `windows_reboot` handler is ignoring the reboot time
339
+
340
+ ### New Feature
341
+
342
+ - **[COOK-3458](https://tickets.chef.io/browse/COOK-3458)** - Add support for `start_date` and `start_time` in `windows_task`
343
+
344
+ ## v1.10.0
345
+
346
+ ### Improvement
347
+
348
+ - [COOK-3126]: `windows_task` should support the on start frequency
349
+ - [COOK-3127]: Support the force option on task create and delete
350
+
351
+ ## v1.9.0
352
+
353
+ ### Bug
354
+
355
+ - [COOK-2899]: windows_feature fails when a feature install requires a reboot
356
+ - [COOK-2914]: Foodcritic failures in Cookbooks
357
+ - [COOK-2983]: windows cookbook has foodcritic failures
358
+
359
+ ### Improvement
360
+
361
+ - [COOK-2686]: Add Windows Server 2012 to version.rb so other depending chef scripts can detect Windows Server 2012
362
+
363
+ ## v1.8.10
364
+
365
+ When using Windows qualified filepaths (C:/foo), the #absolute? method for URI returns true, because "C" is the scheme.
366
+
367
+ This change checks that the URI is http or https scheme, so it can be passed off to remote_file appropriately.
368
+
369
+ - [COOK-2729] - allow only http, https URI schemes
370
+
371
+ ## v1.8.8
372
+
373
+ - [COOK-2729] - helper should use URI rather than regex and bare string
374
+
375
+ ## v1.8.6
376
+
377
+ - [COOK-968] - `windows_package` provider should gracefully handle paths with spaces
378
+ - [COOK-222] - `windows_task` resource does not declare :change action
379
+ - [COOK-241] - Windows cookbook should check for redefined constants
380
+ - [COOK-248] - Windows package install type is case sensitive
381
+
382
+ ## v1.8.4
383
+
384
+ - [COOK-2336] - MSI That requires reboot returns with RC 3010 and causes chef run failure
385
+ - [COOK-2368] - `version` attribute of the `windows_package` provider should be documented
386
+
387
+ ## v1.8.2
388
+
389
+ **Important**: Use powershell in nodes expanded run lists to ensure powershell is downloaded, as powershell has a dependency on this cookbook; v1.8.0 created a circular dependency.
390
+
391
+ - [COOK-2301] - windows 1.8.0 has circular dependency on powershell
392
+
393
+ ## v1.8.0
394
+
395
+ - [COOK-2126] - Add checksum attribute to `windows_zipfile`
396
+ - [COOK-2142] - Add printer and `printer_port` LWRPs
397
+ - [COOK-2149] - Chef::Log.debug Windows Package command line
398
+ - [COOK-2155] -`windows_package` does not send checksum to `cached_file` in `installer_type`
399
+
400
+ ## v1.7.0
401
+
402
+ - [COOK-1745] - allow for newer versions of rubyzip
403
+
404
+ ## v1.6.0
405
+
406
+ - [COOK-2048] - undefined method for Falseclass on task :change when action is :nothing (and task doesn't exist)
407
+ - [COOK-2049] - Add `windows_pagefile` resource
408
+
409
+ ## v1.5.0
410
+
411
+ - [COOK-1251] - Fix LWRP "NotImplementedError"
412
+ - [COOK-1921] - Task LWRP will return true for resource exists when no other scheduled tasks exist
413
+ - [COOK-1932] - Include :change functionality to windows task lwrp
414
+
415
+ ## v1.4.0:
416
+
417
+ - [COOK-1571] - `windows_package` resource (with msi provider) does not accept spaces in filename
418
+ - [COOK-1581] - Windows cookbook needs a scheduled tasks LWRP
419
+ - [COOK-1584] - `windows_registry` should support all registry types
420
+
421
+ ## v1.3.4
422
+
423
+ - [COOK-1173] - `windows_registry` throws Win32::Registry::Error for action :remove on a nonexistent key
424
+ - [COOK-1182] - windows package sets start window title instead of quoting a path
425
+ - [COOK-1476] - zipfile lwrp should support :zip action
426
+ - [COOK-1485] - package resource fails to perform install correctly when "source" contains quote
427
+ - [COOK-1519] - add action :remove for path lwrp
428
+
429
+ ## v1.3.2
430
+
431
+ - [COOK-1033] - remove the `libraries/ruby_19_patches.rb` file which causes havoc on non-Windows systems.
432
+ - [COOK-811] - add a timeout parameter attribute for `windows_package`
433
+
434
+ ## v1.3.0
435
+
436
+ - [COOK-1323] - Update for changes in Chef 0.10.10.
437
+
438
+ - Setting file mode doesn't make sense on Windows (package provider
439
+ - and `reboot_handler` recipe)
440
+ - Prefix ::Win32 to avoid namespace collision with Chef::Win32
441
+ - (`registry_helper` library)
442
+ - Use chef_gem instead of gem_package so gems get installed correctly under the Ruby environment Chef runs in (reboot_handler recipe, zipfile provider)
443
+
444
+ ## v1.2.12
445
+
446
+ - [COOK-1037] - specify version for rubyzip gem
447
+ - [COOK-1007] - `windows_feature` does not work to remove features with dism
448
+ - [COOK-667] - shortcut resource + provider for Windows platforms
449
+
450
+ ## v1.2.10
451
+
452
+ - [COOK-939] - add `type` parameter to `windows_registry` to allow binary registry keys.
453
+ - [COOK-940] - refactor logic so multiple values get created.
454
+
455
+ ## v1.2.8
456
+
457
+ - FIX: Older Windows (Windows Server 2003) sometimes return 127 on successful forked commands
458
+ - FIX: `windows_package`, ensure we pass the WOW* registry redirection flags into reg.open
459
+
460
+ ## v1.2.6
461
+
462
+ - patch to fix [CHEF-2684], Open4 is named Open3 in Ruby 1.9
463
+ - Ruby 1.9's Open3 returns 0 and 42 for successful commands
464
+ - retry keyword can only be used in a rescue block in Ruby 1.9
465
+
466
+ ## v1.2.4
467
+
468
+ - `windows_package` - catch Win32::Registry::Error that pops up when searching certain keys
469
+
470
+ ## v1.2.2
471
+
472
+ - combined numerous helper libarires for easier sharing across libaries/LWRPs
473
+ - renamed Chef::Provider::WindowsFeature::Base file to the more descriptive `feature_base.rb`
474
+ - refactored `windows_path` LWRP
475
+
476
+ - :add action should MODIFY the the underlying ENV variable (vs CREATE)
477
+ - deleted greedy :remove action until it could be made more idempotent
478
+
479
+ - added a `windows_batch` resource/provider for running batch scripts remotely
480
+
481
+ ## v1.2.0
482
+
483
+ - [COOK-745] gracefully handle required server restarts on Windows platform
484
+
485
+ - WindowsRebootHandler for requested and pending reboots
486
+ - `windows_reboot` LWRP for requesting (receiving notifies) reboots
487
+ - `reboot_handler` recipe for enabling WindowsRebootHandler as a report handler
488
+
489
+ - [COOK-714] Correct initialize misspelling
490
+
491
+ - RegistryHelper - new `get_values` method which returns all values for a particular key.
492
+
493
+ ## v1.0.8
494
+
495
+ - [COOK-719] resource/provider for managing windows features
496
+ - [COOK-717] remove `windows_env_vars` resource as env resource exists in core chef
497
+ - new `Windows::Version` helper class
498
+ - refactored `Windows::Helper` mixin
499
+
500
+ ## v1.0.6
501
+
502
+ - added `force_modify` action to `windows_registry` resource
503
+ - add `win_friendly_path` helper
504
+ - re-purpose default recipe to install useful supporting windows related gems
505
+
506
+ ## v1.0.4
507
+
508
+ - [COOK-700] new resources and improvements to the `windows_registry` provider (thanks Paul Morton!)
509
+
510
+ - Open the registry in the bitednes of the OS
511
+ - Provide convenience methods to check if keys and values exit
512
+ - Provide convenience method for reading registry values
513
+ - NEW - `windows_auto_run` resource/provider
514
+ - NEW - `windows_env_vars` resource/provider
515
+ - NEW - `windows_path` resource/provider
516
+
517
+ - re-write of the `windows_package` logic for determining current installed packages
518
+
519
+ - new checksum attribute for `windows_package` resource...useful for remote packages
520
+
521
+ ## v1.0.2
522
+
523
+ - [COOK-647] account for Wow6432Node registry redirecter
524
+ - [COOK-656] begin/rescue on win32/registry
525
+
526
+ ## v1.0.0
527
+
528
+ - [COOK-612] initial release
@@ -0,0 +1,2 @@
1
+ Please refer to
2
+ https://github.com/chef-cookbooks/community_cookbook_documentation/blob/master/CONTRIBUTING.MD
@@ -0,0 +1,21 @@
1
+ <!-- This is a generated file. Please do not edit directly -->
2
+
3
+ # Maintainers
4
+
5
+ This file lists how this cookbook project is maintained. When making changes to the system, this file tells you who needs to review your patch - you need a review from an existing maintainer for the cookbook to provide a :+1: on your pull request. Additionally, you need to not receive a veto from a Lieutenant or the Project Lead.
6
+
7
+ Check out [How Cookbooks are Maintained](https://github.com/chef-cookbooks/community_cookbook_documentation/blob/master/CONTRIBUTING.MD) for details on the process and how to become a maintainer or the project lead.
8
+
9
+ # Project Maintainer
10
+ * [Adam Edwards](https://github.com/adamedx)
11
+
12
+ # Maintainers
13
+ * [Adam Edwards](https://github.com/adamedx)
14
+ * [Kartik Null Cating-Subramanian](https://github.com/ksubrama)
15
+ * [Steven Murawski](https://github.com/smurawski)
16
+ * [Matt Wrock](https://github.com/mwrock)
17
+ * [Jay Mundrawala](https://github.com/jaym)
18
+ * [Claire McQuin](https://github.com/mcquin)
19
+ * [Salim Alam](https://github.com/chefsalim)
20
+ * [Tim Smith](https://github.com/tas50)
21
+ * [Jennifer Davis](https://github.com/sigje)