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
data/Gemfile CHANGED
@@ -1,9 +1,15 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  group :development do
4
- gem "vagrant", :git => "git://github.com/mitchellh/vagrant.git"
4
+ gem 'vagrant', :git => 'git://github.com/mitchellh/vagrant.git'
5
+ gem 'unparser'
6
+ gem 'docker-api'
7
+ gem 'rspec'
8
+ gem 'net-ssh'
5
9
  end
6
10
 
7
11
  group :plugins do
8
- gem "vagrant-clone", path: "."
9
- end
12
+ gem 'vagrant-clone', path: '.'
13
+ gem 'vagrant-omnibus'
14
+ gem 'vagrant-libvirt'
15
+ end
data/Gemfile.lock CHANGED
@@ -1,108 +1,194 @@
1
1
  GIT
2
2
  remote: git://github.com/mitchellh/vagrant.git
3
- revision: 0cfdf6f1feb0b80bf93f91fc4723be0bc62b8692
3
+ revision: 1fe8712ec2d75f1b2ee9c43a65eee36d33a89ff5
4
4
  specs:
5
- vagrant (1.9.0.dev)
6
- childprocess (~> 0.5.0)
5
+ vagrant (2.2.5.dev)
6
+ bcrypt_pbkdf (~> 1.0.0)
7
+ childprocess (~> 0.6.0)
8
+ ed25519 (~> 1.2.4)
7
9
  erubis (~> 2.7.0)
8
- hashicorp-checkpoint (~> 0.1.1)
9
- i18n (>= 0.6.0, <= 0.8.0)
10
+ hashicorp-checkpoint (~> 0.1.5)
11
+ i18n (~> 1.1.1)
10
12
  listen (~> 3.1.5)
11
13
  log4r (~> 1.1.9, < 1.1.11)
12
- net-scp (~> 1.1.0)
14
+ net-scp (~> 1.2.0)
13
15
  net-sftp (~> 2.1)
14
- net-ssh (~> 3.0.1)
15
- nokogiri (= 1.6.7.1)
16
+ net-ssh (~> 5.1.0)
16
17
  rb-kqueue (~> 0.2.0)
17
18
  rest-client (>= 1.6.0, < 3.0)
18
19
  ruby_dep (<= 1.3.1)
20
+ rubyzip (~> 1.2.2)
21
+ vagrant_cloud (~> 2.0.2)
19
22
  wdm (~> 0.1.0)
20
- winrm (~> 1.6)
21
- winrm-fs (~> 0.3.0)
23
+ winrm (~> 2.1)
24
+ winrm-elevated (~> 1.1)
25
+ winrm-fs (~> 1.0)
22
26
 
23
27
  PATH
24
28
  remote: .
25
29
  specs:
26
- vagrant-clone (0.0.1)
30
+ vagrant-clone (0.0.3)
27
31
 
28
32
  GEM
29
33
  remote: https://rubygems.org/
30
34
  specs:
31
- builder (3.2.2)
32
- childprocess (0.5.9)
35
+ abstract_type (0.0.7)
36
+ adamantium (0.2.0)
37
+ ice_nine (~> 0.11.0)
38
+ memoizable (~> 0.4.0)
39
+ ast (2.4.0)
40
+ bcrypt_pbkdf (1.0.1)
41
+ builder (3.2.3)
42
+ childprocess (0.6.3)
33
43
  ffi (~> 1.0, >= 1.0.11)
34
- domain_name (0.5.20161021)
44
+ concord (0.1.5)
45
+ adamantium (~> 0.2.0)
46
+ equalizer (~> 0.0.9)
47
+ concurrent-ruby (1.1.5)
48
+ diff-lcs (1.3)
49
+ docker-api (1.34.2)
50
+ excon (>= 0.47.0)
51
+ multi_json
52
+ domain_name (0.5.20180417)
35
53
  unf (>= 0.0.5, < 1.0.0)
54
+ ed25519 (1.2.4)
55
+ equalizer (0.0.11)
36
56
  erubis (2.7.0)
37
- ffi (1.9.14)
57
+ excon (0.62.0)
58
+ ffi (1.10.0)
59
+ fog-core (1.43.0)
60
+ builder
61
+ excon (~> 0.49)
62
+ formatador (~> 0.2)
63
+ fog-json (1.2.0)
64
+ fog-core
65
+ multi_json (~> 1.10)
66
+ fog-libvirt (0.6.0)
67
+ fog-core (>= 1.27.4)
68
+ fog-json
69
+ fog-xml (~> 0.1.1)
70
+ json
71
+ ruby-libvirt (>= 0.7.0)
72
+ fog-xml (0.1.3)
73
+ fog-core
74
+ nokogiri (>= 1.5.11, < 2.0.0)
75
+ formatador (0.2.5)
38
76
  gssapi (1.2.0)
39
77
  ffi (>= 1.0.1)
40
78
  gyoku (1.3.1)
41
79
  builder (>= 2.1.2)
42
- hashicorp-checkpoint (0.1.4)
80
+ hashicorp-checkpoint (0.1.5)
43
81
  http-cookie (1.0.3)
44
82
  domain_name (~> 0.5)
45
- httpclient (2.8.2.4)
46
- i18n (0.7.0)
83
+ httpclient (2.8.3)
84
+ i18n (1.1.1)
85
+ concurrent-ruby (~> 1.0)
86
+ ice_nine (0.11.2)
87
+ json (1.8.3)
47
88
  listen (3.1.5)
48
89
  rb-fsevent (~> 0.9, >= 0.9.4)
49
90
  rb-inotify (~> 0.9, >= 0.9.7)
50
91
  ruby_dep (~> 1.2)
51
92
  little-plugger (1.1.4)
52
93
  log4r (1.1.10)
53
- logging (2.1.0)
94
+ logging (2.2.2)
54
95
  little-plugger (~> 1.1)
55
96
  multi_json (~> 1.10)
56
- mime-types (3.1)
97
+ memoizable (0.4.2)
98
+ thread_safe (~> 0.3, >= 0.3.1)
99
+ mime-types (3.2.2)
57
100
  mime-types-data (~> 3.2015)
58
- mime-types-data (3.2016.0521)
101
+ mime-types-data (3.2019.0331)
59
102
  mini_portile2 (2.0.0)
60
- multi_json (1.12.1)
61
- net-scp (1.1.2)
103
+ multi_json (1.13.1)
104
+ net-scp (1.2.1)
62
105
  net-ssh (>= 2.6.5)
63
106
  net-sftp (2.1.2)
64
107
  net-ssh (>= 2.6.5)
65
- net-ssh (3.0.2)
108
+ net-ssh (5.1.0)
66
109
  netrc (0.11.0)
67
110
  nokogiri (1.6.7.1)
68
111
  mini_portile2 (~> 2.0.0.rc2)
69
112
  nori (2.6.0)
70
- rb-fsevent (0.9.8)
71
- rb-inotify (0.9.7)
72
- ffi (>= 0.5.0)
73
- rb-kqueue (0.2.4)
113
+ parser (2.6.2.1)
114
+ ast (~> 2.4.0)
115
+ procto (0.0.3)
116
+ rb-fsevent (0.10.3)
117
+ rb-inotify (0.10.0)
118
+ ffi (~> 1.0)
119
+ rb-kqueue (0.2.5)
74
120
  ffi (>= 0.5.0)
75
- rest-client (2.0.0)
121
+ rest-client (2.0.2)
76
122
  http-cookie (>= 1.0.2, < 2.0)
77
123
  mime-types (>= 1.16, < 4.0)
78
124
  netrc (~> 0.8)
125
+ rspec (3.8.0)
126
+ rspec-core (~> 3.8.0)
127
+ rspec-expectations (~> 3.8.0)
128
+ rspec-mocks (~> 3.8.0)
129
+ rspec-core (3.8.0)
130
+ rspec-support (~> 3.8.0)
131
+ rspec-expectations (3.8.2)
132
+ diff-lcs (>= 1.2.0, < 2.0)
133
+ rspec-support (~> 3.8.0)
134
+ rspec-mocks (3.8.0)
135
+ diff-lcs (>= 1.2.0, < 2.0)
136
+ rspec-support (~> 3.8.0)
137
+ rspec-support (3.8.0)
138
+ ruby-libvirt (0.7.1)
79
139
  ruby_dep (1.3.1)
80
- rubyntlm (0.6.1)
81
- rubyzip (1.2.0)
140
+ rubyntlm (0.6.2)
141
+ rubyzip (1.2.2)
142
+ thread_safe (0.3.6)
82
143
  unf (0.1.4)
83
144
  unf_ext
84
- unf_ext (0.0.7.2)
145
+ unf_ext (0.0.7.5)
146
+ unparser (0.4.4)
147
+ abstract_type (~> 0.0.7)
148
+ adamantium (~> 0.2.0)
149
+ concord (~> 0.1.5)
150
+ diff-lcs (~> 1.3)
151
+ equalizer (~> 0.0.9)
152
+ parser (~> 2.6.2)
153
+ procto (~> 0.0.2)
154
+ vagrant-libvirt (0.0.45)
155
+ fog-core (~> 1.43.0)
156
+ fog-libvirt (>= 0.3.0)
157
+ nokogiri (>= 1.6.0)
158
+ vagrant-omnibus (1.5.0)
159
+ vagrant_cloud (2.0.2)
160
+ rest-client (~> 2.0.2)
85
161
  wdm (0.1.1)
86
- winrm (1.8.1)
162
+ winrm (2.3.1)
87
163
  builder (>= 2.1.2)
164
+ erubis (~> 2.7)
88
165
  gssapi (~> 1.2)
89
166
  gyoku (~> 1.0)
90
167
  httpclient (~> 2.2, >= 2.2.0.2)
91
168
  logging (>= 1.6.1, < 3.0)
92
169
  nori (~> 2.0)
93
- rubyntlm (~> 0.6.0)
94
- winrm-fs (0.3.2)
170
+ rubyntlm (~> 0.6.0, >= 0.6.1)
171
+ winrm-elevated (1.1.1)
172
+ winrm (~> 2.0)
173
+ winrm-fs (~> 1.0)
174
+ winrm-fs (1.3.2)
95
175
  erubis (~> 2.7)
96
176
  logging (>= 1.6.1, < 3.0)
97
177
  rubyzip (~> 1.1)
98
- winrm (~> 1.5)
178
+ winrm (~> 2.0)
99
179
 
100
180
  PLATFORMS
101
181
  ruby
102
182
 
103
183
  DEPENDENCIES
184
+ docker-api
185
+ net-ssh
186
+ rspec
187
+ unparser
104
188
  vagrant!
105
189
  vagrant-clone!
190
+ vagrant-libvirt
191
+ vagrant-omnibus
106
192
 
107
193
  BUNDLED WITH
108
- 1.13.6
194
+ 1.17.1
data/Rakefile CHANGED
@@ -4,4 +4,5 @@ require 'bundler/setup'
4
4
  $stdout.sync = true
5
5
  $stderr.sync = true
6
6
 
7
- Bundler::GemHelper.install_tasks
7
+
8
+ Bundler::GemHelper.install_tasks
data/Vagrantfile ADDED
@@ -0,0 +1,9 @@
1
+ Vagrant.configure(2) do |config|
2
+ config.vm.define 'node_000' do |node_000|
3
+ node_000.vm.provider 'docker' do |d|
4
+ d.image = '<CONTAINER_ID>'
5
+ d.privileged = true
6
+ d.has_ssh = true
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,321 @@
1
+ # apt Cookbook CHANGELOG
2
+
3
+ This file is used to list changes made in each version of the apt cookbook.
4
+
5
+ ## 6.1.0 (2017-04-11)
6
+
7
+ - Test with local delivery and not Rake
8
+ - Use proper value type for bsd-mailx package only_if/not_if block
9
+ - Update apache2 license string
10
+ - Convert apt_preference to a custom resource
11
+
12
+ ## 6.0.1 (2017-02-27)
13
+
14
+ - Update cookbook description
15
+ - Testing updates for Chef 13 and fixes to the cacher recipe
16
+
17
+ ## 6.0.0 (2017-02-08)
18
+
19
+ ### Breaking changes
20
+
21
+ - apt_update and apt_repository resources have been removed from the cookbook. These resources were both added to the chef-client itself. Due to this we now require Chef 12.9 or later, which has both of these resources built in. If you require compatibility with older chef-client releases you will need to pin to the 5.X release.
22
+
23
+ ### Other changes
24
+
25
+ - apt_preference resource now properly required a pin_priority, which prevents us from writing out bad preference files that must be manually removed
26
+
27
+ ## 5.1.0 (2017-02-01)
28
+
29
+ - Convert integration tests to inspec
30
+ - Add management of the /etc/apt/apt.conf.d/10dpkg-options file with new attributes. This allows tuning of how dpkg will handle package prompts during package installation. Note that Chef 12.19+ will automatically suppress package prompts
31
+
32
+ ## 5.0.1 (2016-12-22)
33
+
34
+ - Avoid CHEF-3694 in apt_preferences resource
35
+ - Cookstyle fixes
36
+
37
+ ## 5.0.0 (2016-10-14)
38
+
39
+ - Remove search logic from the cacher client cookbook and rework attribute structure. See the attributes file and readme for new structure. Determining what servers to cache against is better handled in a wrapper cookbook where you can define the exact search syntax yourself
40
+ - Corrected readme examples for the cacher client setup
41
+ - Depend on the latest compat_resource
42
+ - Define matchers for ChefSpec
43
+ - Testing updates to better test the various recipes and providers in the cookbook on Travis
44
+
45
+ ## 4.0.2 (2016-08-13)
46
+
47
+ - The cookbook requires Chef 12.1+ not 12.0\. Update docs
48
+ - Test on Chef 12.1 to ensure compatibility
49
+ - Restore compatibility with Chef < 12.4
50
+
51
+ ## 4.0.1 (2016-06-21)
52
+
53
+ - Fix bug that prevented adding the cookbook to non Debian/Ubuntu nodes without chef run failures
54
+
55
+ ## 4.0.0 (2016-06-02)
56
+
57
+ This cookbook now requires Chef 12\. If you require Chef 11 compatibility you will need to pin to the 3.X cookbook version
58
+
59
+ - The apt-get update logic in the default recipe has been converted to apt_update custom resource and compat_resource cookbook has been added for backwards compatibility with all Chef 12.X releases. In addition this resource is now included in core chef-client and the cookbook will use the built-in resource if available
60
+ - Added support for the unattended-upgrade RandomSleep configuration feature
61
+ - Added support for the unattended-upgrade Unattended-Upgrade::Origins-Pattern configuration feature
62
+ - Added Chefspec matchers for apt_update
63
+ - Fixed apt_repository documentation to correctly reflect the deb_src property
64
+
65
+ ## 3.0.0 (2016-03-01)
66
+
67
+ - Removed Chef 10 compatibility code. This cookbook requires Chef 11 or greater now
68
+ - The default recipe will no longer create /etc/apt/ and other directories on non-Debian based systems
69
+ - Updated the autoremove command in the default recipe to run in non-interactive mode
70
+ - Added CentOS 7 to Test Kitchenwith tests to ensure we don't create any files on RHEL or other non-Debian hosts
71
+ - Updated Chefspec to 4.X format
72
+ - Properly mock the existence of apt for the Chefspec runs so they don't just skip over the resources
73
+ - Fixed lwrp test kitchen tests to pass
74
+ - Resolved or disabled all Rubocop warnings
75
+ - Enabled testing in Travis CI
76
+ - Removed Apt Cacher NG support for Ubuntu 10.04 and Debian 6.X as they are both deprecated
77
+ - Fixed + signs in packages names with the preference LWRP being rejected
78
+
79
+ ## v2.9.2
80
+
81
+ - # 168 Adding guard to package resource.
82
+
83
+ ## v2.9.1
84
+
85
+ - Adding package apt-transport-https to default.rb
86
+
87
+ ## v2.9.0
88
+
89
+ - Add `sensitive` flag for apt_repositories
90
+ - Enable installation of recommended or suggested packages
91
+ - Tidy up `apt-get update` logic
92
+ - Fixing not_if guard on ruby_block[validate-key #{key}]
93
+
94
+ ## v2.8.2 (2015-08-24)
95
+
96
+ - Fix removal of apt_preferences
97
+
98
+ ## v2.8.1 (2015-08-18)
99
+
100
+ - Handle keyservers as URLs and bare hostnames
101
+
102
+ ## v2.8.0 (2015-08-18)
103
+
104
+ - Access keyservers on port 80
105
+ - Adds key_proxy as LWRP attribute for apt_repository
106
+ - Fix wildcard glob preferences files
107
+ - Fix text output verification for non en_US locales
108
+ - Quote repo URLs to deal with spaces
109
+
110
+ ## v2.7.0 (2015-03-23)
111
+
112
+ - Support Debian 8.0
113
+ - Filename verification for LWRPs
114
+ - Support SSL enabled apt repositories
115
+
116
+ ## v2.6.1 (2014-12-29)
117
+
118
+ - Remove old preference files without .pref extension from previous versions
119
+
120
+ ## v2.6.0 (2014-09-09)
121
+
122
+ - Always update on first run - check
123
+ - Adding ppa support for apt_repository
124
+
125
+ ## v2.5.3 (2014-08-14)
126
+
127
+ - # 87 - Improve default settings, account for non-linux platforms
128
+
129
+ ## v2.5.2 (2014-08-14)
130
+
131
+ - Fully restore 2.3.10 behaviour
132
+
133
+ ## v2.5.1 (2014-08-14)
134
+
135
+ - fix breakage introduced in apt 2.5.0
136
+
137
+ ## v2.5.0 (2014-08-12)
138
+
139
+ - Add unattended-upgrades recipe
140
+ - Only update the cache for the created repository
141
+ - Added ChefSpec matchers and default_action for resources
142
+ - Avoid cloning resource attributes
143
+ - Minor documentation updates
144
+
145
+ ## v2.4.0 (2014-05-15)
146
+
147
+ - [COOK-4534]: Add option to update apt cache at compile time
148
+
149
+ ## v2.3.10 (2014-04-23)
150
+
151
+ - [COOK-4512] Bugfix: Use empty PATH if PATH is nil
152
+
153
+ ## v2.3.8 (2014-02-14)
154
+
155
+ ### Bug
156
+
157
+ - **[COOK-4287](https://tickets.opscode.com/browse/COOK-4287)** - Cleanup the Kitchen
158
+
159
+ ## v2.3.6
160
+
161
+ - [COOK-4154] - Add chefspec matchers.rb file to apt cookbook
162
+ - [COOK-4102] - Only index created repository
163
+
164
+ ## v2.3.6
165
+
166
+ - [COOK-4154] - Add chefspec matchers.rb file to apt cookbook
167
+ - [COOK-4102] - Only index created repository
168
+
169
+ ## v2.3.4
170
+
171
+ No change. Version bump for toolchain sanity
172
+
173
+ ## v2.3.2
174
+
175
+ - [COOK-3905] apt-get-update-periodic: configuration for the update period
176
+ - Updating style for rubocops
177
+ - Updating test-kitchen harness
178
+
179
+ ## v2.3.0
180
+
181
+ ### Bug
182
+
183
+ - **[COOK-3812](https://tickets.opscode.com/browse/COOK-3812)** - Add a way to bypass the apt existence check
184
+
185
+ ### Improvement
186
+
187
+ - **[COOK-3567](https://tickets.opscode.com/browse/COOK-3567)** - Allow users to bypass apt-cache via attributes
188
+
189
+ ## v2.2.1
190
+
191
+ ### Improvement
192
+
193
+ - **[COOK-664](https://tickets.opscode.com/browse/COOK-664)** - Check platform before running apt-specific commands
194
+
195
+ ## v2.2.0
196
+
197
+ ### Bug
198
+
199
+ - **[COOK-3707](https://tickets.opscode.com/browse/COOK-3707)** - multiple nics confuse apt::cacher-client
200
+
201
+ ## v2.1.2
202
+
203
+ ### Improvement
204
+
205
+ - **[COOK-3551](https://tickets.opscode.com/browse/COOK-3551)** - Allow user to set up a trusted APT repository
206
+
207
+ ## v2.1.1
208
+
209
+ ### Bug
210
+
211
+ - **[COOK-1856](https://tickets.opscode.com/browse/COOK-1856)** - Match GPG keys without case sensitivity
212
+
213
+ ## v2.1.0
214
+
215
+ - [COOK-3426]: cacher-ng fails with restrict_environment set to true
216
+ - [COOK-2859]: cacher-client executes out of order
217
+ - [COOK-3052]: Long GPG keys are downloaded on every run
218
+ - [COOK-1856]: apt cookbook should match keys without case sensitivity
219
+ - [COOK-3255]: Attribute name incorrect in README
220
+ - [COOK-3225]: Call use_inline_resources only if defined
221
+ - [COOK-3386]: Cache dir for apt-cacher-ng
222
+ - [COOK-3291]: apt_repository: enable usage of a keyserver on port 80
223
+ - Greatly expanded test coverage with ChefSpec and Test-Kitchen
224
+
225
+ ## v2.0.0
226
+
227
+ ### Bug
228
+
229
+ - [COOK-2258]: apt: LWRP results in error under why-run mode in apt 1.9.0 cookbook
230
+
231
+ ## v1.10.0
232
+
233
+ ### Improvement
234
+
235
+ - [COOK-2885]: Improvements for apt cache server search
236
+
237
+ ### Bug
238
+
239
+ - [COOK-2441]: Apt recipe broken in new chef version
240
+ - [COOK-2660]: Create Debian 6.0 "squeeze" specific template for
241
+ - apt-cacher-ng
242
+
243
+ ## v1.9.2
244
+
245
+ - [COOK-2631] - Create Ubuntu 10.04 specific template for apt-cacher-ng
246
+
247
+ ## v1.9.0
248
+
249
+ - [COOK-2185] - Proxy for apt-key
250
+ - [COOK-2338] - Support pinning by glob() or regexp
251
+
252
+ ## v1.8.4
253
+
254
+ - [COOK-2171] - Update README to clarify required Chef version: 10.18.0
255
+ - or higher.
256
+
257
+ ## v1.8.2
258
+
259
+ - [COOK-2112] - need [] around "arch" in sources.list entries
260
+ - [COOK-2171] - fixes a regression in the notification
261
+
262
+ ## v1.8.0
263
+
264
+ - [COOK-2143] - Allow for a custom cacher-ng port
265
+ - [COOK-2171] - On `apt_repository.run_action(:add)` the source file
266
+ - is not created.
267
+ - [COOK-2184] - apt::cacher-ng, use `cacher_port` attribute in
268
+ - acng.conf
269
+
270
+ ## v1.7.0
271
+
272
+ - [COOK-2082] - add "arch" parameter to apt_repository LWRP
273
+
274
+ ## v1.6.0
275
+
276
+ - [COOK-1893] - `apt_preference` use "`package_name`" resource instead of "name"
277
+ - [COOK-1894] - change filename for sources.list.d files
278
+ - [COOK-1914] - Wrong dir permissions for /etc/apt/preferences.d/
279
+ - [COOK-1942] - README.md has wrong name for the keyserver attribute
280
+ - [COOK-2019] - create 01proxy before any other apt-get updates get executed
281
+
282
+ ## v1.5.2
283
+
284
+ - [COOK-1682] - use template instead of file resource in apt::cacher-client
285
+ - [COOK-1875] - cacher-client should be Environment-aware
286
+
287
+ ## V1.5.0
288
+
289
+ - [COOK-1500] - Avoid triggering apt-get update
290
+ - [COOK-1548] - Add execute commands for autoclean and autoremove
291
+ - [COOK-1591] - Setting up the apt proxy should leave https
292
+ - connections direct
293
+ - [COOK-1596] - execute[apt-get-update-periodic] never runs
294
+ - [COOK-1762] - create /etc/apt/preferences.d directory
295
+ - [COOK-1776] - apt key check isn't idempotent
296
+
297
+ ## v1.4.8
298
+
299
+ - Adds test-kitchen support
300
+ - [COOK-1435] - repository lwrp is not idempotent with http key
301
+
302
+ ## v1.4.6
303
+
304
+ - [COOK-1530] - apt_repository isn't aware of update-success-stamp
305
+ - file (also reverts COOK-1382 patch).
306
+
307
+ ## v1.4.4
308
+
309
+ - [COOK-1229] - Allow cacher IP to be set manually in non-Chef Solo
310
+ - environments
311
+ - [COOK-1530] - Immediately update apt-cache when sources.list file is dropped off
312
+
313
+ ## v1.4.2
314
+
315
+ - [COOK-1155] - LWRP for apt pinning
316
+
317
+ ## v1.4.0
318
+
319
+ - [COOK-889] - overwrite existing repo source files
320
+ - [COOK-921] - optionally use cookbook_file or remote_file for key
321
+ - [COOK-1032] - fixes problem with apt repository key installation
@@ -0,0 +1,2 @@
1
+ Please refer to
2
+ https://github.com/chef-cookbooks/community_cookbook_documentation/blob/master/CONTRIBUTING.MD
@@ -0,0 +1,15 @@
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
+ * [Tim Smith](https://github.com/tas50)
11
+
12
+ # Maintainers
13
+ * [Jennifer Davis](https://github.com/sigje)
14
+ * [Tim Smith](https://github.com/tas50)
15
+ * [Thom May](https://github.com/thommay)