madscience 0.0.1

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 (151) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.madscience_gem_location +0 -0
  4. data/Cheffile +9 -0
  5. data/Cheffile.lock +34 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +9 -0
  8. data/README.md +126 -0
  9. data/Rakefile +1 -0
  10. data/TODO +17 -0
  11. data/bin/madscience +90 -0
  12. data/cookbooks/apt/CHANGELOG.md +183 -0
  13. data/cookbooks/apt/README.md +255 -0
  14. data/cookbooks/apt/attributes/default.rb +29 -0
  15. data/cookbooks/apt/files/default/apt-proxy-v2.conf +50 -0
  16. data/cookbooks/apt/libraries/helpers.rb +49 -0
  17. data/cookbooks/apt/libraries/matchers.rb +17 -0
  18. data/cookbooks/apt/libraries/network.rb +31 -0
  19. data/cookbooks/apt/metadata.json +54 -0
  20. data/cookbooks/apt/metadata.rb +34 -0
  21. data/cookbooks/apt/providers/preference.rb +63 -0
  22. data/cookbooks/apt/providers/repository.rb +150 -0
  23. data/cookbooks/apt/recipes/cacher-client.rb +81 -0
  24. data/cookbooks/apt/recipes/cacher-ng.rb +43 -0
  25. data/cookbooks/apt/recipes/default.rb +91 -0
  26. data/cookbooks/apt/resources/preference.rb +32 -0
  27. data/cookbooks/apt/resources/repository.rb +43 -0
  28. data/cookbooks/apt/templates/debian-6.0/acng.conf.erb +173 -0
  29. data/cookbooks/apt/templates/default/01proxy.erb +5 -0
  30. data/cookbooks/apt/templates/default/acng.conf.erb +275 -0
  31. data/cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb +269 -0
  32. data/cookbooks/chef_handler/CHANGELOG.md +44 -0
  33. data/cookbooks/chef_handler/README.md +103 -0
  34. data/cookbooks/chef_handler/attributes/default.rb +30 -0
  35. data/cookbooks/chef_handler/files/default/handlers/README +1 -0
  36. data/cookbooks/chef_handler/libraries/matchers.rb +29 -0
  37. data/cookbooks/chef_handler/metadata.json +29 -0
  38. data/cookbooks/chef_handler/metadata.rb +7 -0
  39. data/cookbooks/chef_handler/providers/default.rb +97 -0
  40. data/cookbooks/chef_handler/recipes/default.rb +33 -0
  41. data/cookbooks/chef_handler/recipes/json_file.rb +28 -0
  42. data/cookbooks/chef_handler/resources/default.rb +34 -0
  43. data/cookbooks/dmg/CHANGELOG.md +75 -0
  44. data/cookbooks/dmg/README.md +143 -0
  45. data/cookbooks/dmg/attributes/default.rb +20 -0
  46. data/cookbooks/dmg/metadata.json +30 -0
  47. data/cookbooks/dmg/metadata.rb +9 -0
  48. data/cookbooks/dmg/providers/package.rb +91 -0
  49. data/cookbooks/dmg/recipes/default.rb +18 -0
  50. data/cookbooks/dmg/resources/package.rb +37 -0
  51. data/cookbooks/vagrant/Berksfile +2 -0
  52. data/cookbooks/vagrant/CHANGELOG.md +7 -0
  53. data/cookbooks/vagrant/README.md +146 -0
  54. data/cookbooks/vagrant/TESTING.md +25 -0
  55. data/cookbooks/vagrant/attributes/default.rb +22 -0
  56. data/cookbooks/vagrant/metadata.rb +14 -0
  57. data/cookbooks/vagrant/providers/plugin.rb +50 -0
  58. data/cookbooks/vagrant/recipes/debian.rb +9 -0
  59. data/cookbooks/vagrant/recipes/default.rb +34 -0
  60. data/cookbooks/vagrant/recipes/fedora.rb +1 -0
  61. data/cookbooks/vagrant/recipes/mac_os_x.rb +7 -0
  62. data/cookbooks/vagrant/recipes/rhel.rb +9 -0
  63. data/cookbooks/vagrant/recipes/uninstall_gem.rb +7 -0
  64. data/cookbooks/vagrant/recipes/windows.rb +5 -0
  65. data/cookbooks/vagrant/resources/plugin.rb +8 -0
  66. data/cookbooks/virtualbox/README.md +167 -0
  67. data/cookbooks/virtualbox/attributes/default.rb +32 -0
  68. data/cookbooks/virtualbox/attributes/user.rb +22 -0
  69. data/cookbooks/virtualbox/attributes/webportal.rb +22 -0
  70. data/cookbooks/virtualbox/attributes/webservice.rb +24 -0
  71. data/cookbooks/virtualbox/files/ubuntu/machines_enabled +1 -0
  72. data/cookbooks/virtualbox/files/ubuntu/vboxcontrol +104 -0
  73. data/cookbooks/virtualbox/libraries/helpers.rb +30 -0
  74. data/cookbooks/virtualbox/metadata.rb +16 -0
  75. data/cookbooks/virtualbox/recipes/default.rb +70 -0
  76. data/cookbooks/virtualbox/recipes/systemservice.rb +56 -0
  77. data/cookbooks/virtualbox/recipes/user.rb +39 -0
  78. data/cookbooks/virtualbox/recipes/webportal.rb +58 -0
  79. data/cookbooks/virtualbox/recipes/webservice.rb +44 -0
  80. data/cookbooks/virtualbox/templates/ubuntu/config.erb +3 -0
  81. data/cookbooks/virtualbox/templates/ubuntu/config.php.erb +183 -0
  82. data/cookbooks/virtualbox/templates/ubuntu/vbox.cfg.erb +51 -0
  83. data/cookbooks/windows/CHANGELOG.md +268 -0
  84. data/cookbooks/windows/README.md +665 -0
  85. data/cookbooks/windows/attributes/default.rb +23 -0
  86. data/cookbooks/windows/files/default/handlers/windows_reboot_handler.rb +76 -0
  87. data/cookbooks/windows/libraries/feature_base.rb +59 -0
  88. data/cookbooks/windows/libraries/matchers.rb +450 -0
  89. data/cookbooks/windows/libraries/powershell_helper.rb +59 -0
  90. data/cookbooks/windows/libraries/powershell_out.rb +79 -0
  91. data/cookbooks/windows/libraries/registry_helper.rb +357 -0
  92. data/cookbooks/windows/libraries/version.rb +206 -0
  93. data/cookbooks/windows/libraries/windows_architecture_helper.rb +86 -0
  94. data/cookbooks/windows/libraries/windows_helper.rb +88 -0
  95. data/cookbooks/windows/libraries/windows_privileged.rb +94 -0
  96. data/cookbooks/windows/metadata.json +31 -0
  97. data/cookbooks/windows/metadata.rb +9 -0
  98. data/cookbooks/windows/providers/auto_run.rb +32 -0
  99. data/cookbooks/windows/providers/batch.rb +62 -0
  100. data/cookbooks/windows/providers/feature_dism.rb +64 -0
  101. data/cookbooks/windows/providers/feature_powershell.rb +38 -0
  102. data/cookbooks/windows/providers/feature_servermanagercmd.rb +47 -0
  103. data/cookbooks/windows/providers/package.rb +252 -0
  104. data/cookbooks/windows/providers/pagefile.rb +153 -0
  105. data/cookbooks/windows/providers/path.rb +35 -0
  106. data/cookbooks/windows/providers/printer.rb +100 -0
  107. data/cookbooks/windows/providers/printer_port.rb +102 -0
  108. data/cookbooks/windows/providers/reboot.rb +31 -0
  109. data/cookbooks/windows/providers/registry.rb +72 -0
  110. data/cookbooks/windows/providers/shortcut.rb +56 -0
  111. data/cookbooks/windows/providers/task.rb +128 -0
  112. data/cookbooks/windows/providers/zipfile.rb +91 -0
  113. data/cookbooks/windows/recipes/default.rb +34 -0
  114. data/cookbooks/windows/recipes/reboot_handler.rb +32 -0
  115. data/cookbooks/windows/resources/auto_run.rb +30 -0
  116. data/cookbooks/windows/resources/batch.rb +36 -0
  117. data/cookbooks/windows/resources/feature.rb +44 -0
  118. data/cookbooks/windows/resources/package.rb +46 -0
  119. data/cookbooks/windows/resources/pagefile.rb +29 -0
  120. data/cookbooks/windows/resources/path.rb +28 -0
  121. data/cookbooks/windows/resources/printer.rb +41 -0
  122. data/cookbooks/windows/resources/printer_port.rb +40 -0
  123. data/cookbooks/windows/resources/reboot.rb +29 -0
  124. data/cookbooks/windows/resources/registry.rb +34 -0
  125. data/cookbooks/windows/resources/shortcut.rb +35 -0
  126. data/cookbooks/windows/resources/task.rb +50 -0
  127. data/cookbooks/windows/resources/zipfile.rb +33 -0
  128. data/cookbooks/yum/CHANGELOG.md +212 -0
  129. data/cookbooks/yum/README.md +268 -0
  130. data/cookbooks/yum/attributes/main.rb +97 -0
  131. data/cookbooks/yum/libraries/matchers.rb +27 -0
  132. data/cookbooks/yum/metadata.json +34 -0
  133. data/cookbooks/yum/metadata.rb +13 -0
  134. data/cookbooks/yum/providers/globalconfig.rb +37 -0
  135. data/cookbooks/yum/providers/repository.rb +85 -0
  136. data/cookbooks/yum/recipes/default.rb +34 -0
  137. data/cookbooks/yum/resources/globalconfig.rb +105 -0
  138. data/cookbooks/yum/resources/repository.rb +63 -0
  139. data/cookbooks/yum/templates/default/main.erb +251 -0
  140. data/cookbooks/yum/templates/default/repo.erb +109 -0
  141. data/lib/madscience/version.rb +3 -0
  142. data/lib/madscience.rb +5 -0
  143. data/madscience.gemspec +44 -0
  144. data/new_gem_version.rb +6 -0
  145. data/node-data.json +3 -0
  146. data/site-cookbooks/madscience-vagrant-cookbook/CHANGELOG.md +13 -0
  147. data/site-cookbooks/madscience-vagrant-cookbook/README.md +53 -0
  148. data/site-cookbooks/madscience-vagrant-cookbook/metadata.rb +17 -0
  149. data/site-cookbooks/madscience-vagrant-cookbook/recipes/default.rb +87 -0
  150. data/solo.rb +6 -0
  151. metadata +337 -0
@@ -0,0 +1,40 @@
1
+ #
2
+ # Author:: Doug Ireton (<doug.ireton@nordstrom.com>)
3
+ # Cookbook Name:: windows
4
+ # Resource:: printer_port
5
+ #
6
+ # Copyright:: 2012, Nordstrom, Inc.
7
+ #
8
+ # Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ # See the License for the specific language governing permissions and
18
+ # limitations under the License.
19
+ #
20
+ # See here for more info:
21
+ # http://msdn.microsoft.com/en-us/library/windows/desktop/aa394492(v=vs.85).aspx
22
+
23
+ require 'resolv'
24
+
25
+ actions :create, :delete
26
+
27
+ default_action :create
28
+
29
+ attribute :ipv4_address, :name_attribute => true, :kind_of => String,
30
+ :required => true, :regex => Resolv::IPv4::Regex
31
+
32
+ attribute :port_name , :kind_of => String
33
+ attribute :port_number , :kind_of => Fixnum, :default => 9100
34
+ attribute :port_description, :kind_of => String
35
+ attribute :snmp_enabled , :kind_of => [ TrueClass, FalseClass ],
36
+ :default => false
37
+
38
+ attribute :port_protocol, :kind_of => Fixnum, :default => 1, :equal_to => [1, 2]
39
+
40
+ attr_accessor :exists
@@ -0,0 +1,29 @@
1
+ #
2
+ # Author:: Seth Chisamore (<schisamo@opscode.com>)
3
+ # Cookbook Name:: windows
4
+ # Resource:: reboot
5
+ #
6
+ # Copyright:: 2011, Opscode, Inc.
7
+ #
8
+ # Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ # See the License for the specific language governing permissions and
18
+ # limitations under the License.
19
+ #
20
+
21
+ actions :request, :cancel
22
+
23
+ attribute :timeout, :kind_of => Integer, :name_attribute => true
24
+ attribute :reason, :kind_of => String, :default => ''
25
+
26
+ def initialize(name,run_context=nil)
27
+ super
28
+ @action = :request
29
+ end
@@ -0,0 +1,34 @@
1
+ #
2
+ # Author:: Doug MacEachern (<dougm@vmware.com>)
3
+ # Author:: Seth Chisamore (<schisamo@opscode.com>)
4
+ # Cookbook Name:: windows
5
+ # Resource:: registry
6
+ #
7
+ # Copyright:: 2010, VMware, Inc.
8
+ # Copyright:: 2011, Opscode, Inc.
9
+ #
10
+ # Licensed under the Apache License, Version 2.0 (the "License");
11
+ # you may not use this file except in compliance with the License.
12
+ # You may obtain a copy of the License at
13
+ #
14
+ # http://www.apache.org/licenses/LICENSE-2.0
15
+ #
16
+ # Unless required by applicable law or agreed to in writing, software
17
+ # distributed under the License is distributed on an "AS IS" BASIS,
18
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ # See the License for the specific language governing permissions and
20
+ # limitations under the License.
21
+ #
22
+
23
+ actions :create, :modify, :force_modify, :remove
24
+
25
+ attribute :key_name, :kind_of => String, :name_attribute => true
26
+ attribute :values, :kind_of => Hash
27
+ attribute :type, :kind_of => Symbol, :default => nil, :equal_to => [:binary, :string, :multi_string, :expand_string, :dword, :dword_big_endian, :qword]
28
+
29
+ def initialize(name, run_context=nil)
30
+ super
31
+ @action = :modify
32
+ @key_name = name
33
+ Chef::Log.warn("Please use the registry_key resource in Chef Client 11. The windows_registry LWRP is still supported for Chef Client 10, but is deprecated in future versions.")
34
+ end
@@ -0,0 +1,35 @@
1
+ #
2
+ # Author:: Doug MacEachern <dougm@vmware.com>
3
+ # Cookbook Name:: windows
4
+ # Resource:: shortcut
5
+ #
6
+ # Copyright:: 2010, VMware, Inc.
7
+ #
8
+ # Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ # See the License for the specific language governing permissions and
18
+ # limitations under the License.
19
+ #
20
+
21
+ actions :create
22
+
23
+ default_action :create
24
+
25
+ attribute :name, :kind_of => String
26
+ attribute :target, :kind_of => String
27
+ attribute :arguments, :kind_of => String
28
+ attribute :description, :kind_of => String
29
+ attribute :cwd, :kind_of => String
30
+
31
+ # Covers 0.10.8 and earlier
32
+ def initialize(*args)
33
+ super
34
+ @action = :create
35
+ end
@@ -0,0 +1,50 @@
1
+ #
2
+ # Author:: Paul Mooring (<paul@opscode.com>)
3
+ # Cookbook Name:: windows
4
+ # Resource:: task
5
+ #
6
+ # Copyright:: 2012, Opscode, Inc.
7
+ #
8
+ # Licensed under the Apache License, Version 2.0 (the "License");
9
+ # you may not use this file except in compliance with the License.
10
+ # You may obtain a copy of the License at
11
+ #
12
+ # http://www.apache.org/licenses/LICENSE-2.0
13
+ #
14
+ # Unless required by applicable law or agreed to in writing, software
15
+ # distributed under the License is distributed on an "AS IS" BASIS,
16
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ # See the License for the specific language governing permissions and
18
+ # limitations under the License.
19
+ #
20
+
21
+ # Passwords can't be loaded for existing tasks, making :modify both confusing
22
+ # and not very useful
23
+ actions :create, :delete, :run, :change
24
+
25
+ attribute :name, :kind_of => String, :name_attribute => true
26
+ attribute :command, :kind_of => String
27
+ attribute :cwd, :kind_of => String
28
+ attribute :user, :kind_of => String, :default => nil
29
+ attribute :password, :kind_of => String, :default => nil
30
+ attribute :run_level, :equal_to => [:highest, :limited], :default => :limited
31
+ attribute :force, :kind_of => [ TrueClass, FalseClass ], :default => false
32
+ attribute :frequency_modifier, :kind_of => Integer, :default => 1
33
+ attribute :frequency, :equal_to => [:minute,
34
+ :hourly,
35
+ :daily,
36
+ :weekly,
37
+ :monthly,
38
+ :once,
39
+ :on_logon,
40
+ :onstart,
41
+ :on_idle], :default => :hourly
42
+ attribute :start_day, :kind_of => String, :default => nil
43
+ attribute :start_time, :kind_of => String, :default => nil
44
+
45
+ attr_accessor :exists, :status
46
+
47
+ def initialize(name, run_context=nil)
48
+ super
49
+ @action = :create
50
+ end
@@ -0,0 +1,33 @@
1
+ #
2
+ # Author:: Doug MacEachern (<dougm@vmware.com>)
3
+ # Author:: Seth Chisamore (<schisamo@opscode.com>)
4
+ # Cookbook Name:: windows
5
+ # Resource:: unzip
6
+ #
7
+ # Copyright:: 2010, VMware, Inc.
8
+ # Copyright:: 2011, Opscode, Inc.
9
+ #
10
+ # Licensed under the Apache License, Version 2.0 (the "License");
11
+ # you may not use this file except in compliance with the License.
12
+ # You may obtain a copy of the License at
13
+ #
14
+ # http://www.apache.org/licenses/LICENSE-2.0
15
+ #
16
+ # Unless required by applicable law or agreed to in writing, software
17
+ # distributed under the License is distributed on an "AS IS" BASIS,
18
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ # See the License for the specific language governing permissions and
20
+ # limitations under the License.
21
+ #
22
+
23
+ actions :unzip, :zip
24
+
25
+ attribute :path, :kind_of => String, :name_attribute => true
26
+ attribute :source, :kind_of => String
27
+ attribute :overwrite, :kind_of => [ TrueClass, FalseClass ], :default => false
28
+ attribute :checksum, :kind_of => String
29
+
30
+ def initialize(name, run_context=nil)
31
+ super
32
+ @action = :unzip
33
+ end
@@ -0,0 +1,212 @@
1
+ yum Cookbook CHANGELOG
2
+ ======================
3
+ This file is used to list changes made in each version of the yum cookbook.
4
+
5
+
6
+ v3.2.2 (2014-06-11)
7
+ -------------------
8
+ #77 - Parameter default to be Trueclass instead of "1"
9
+ #78 - add releasever parameter
10
+
11
+
12
+ v3.2.0 (2014-04-09)
13
+ -------------------
14
+ - [COOK-4510] - Adding username and password parameters to node attributes
15
+ - [COOK-4518] - Fix Scientific Linux distroverpkg
16
+
17
+
18
+ v3.1.6 (2014-03-27)
19
+ -------------------
20
+ - [COOK-4463] - support multiple GPG keys
21
+ - [COOK-4364] - yum_repository delete action fails
22
+
23
+
24
+ v3.1.4 (2014-03-12)
25
+ -------------------
26
+ - [COOK-4417] Expand test harness to encompass 32-bit boxes
27
+
28
+
29
+ v3.1.2 (2014-02-23)
30
+ -------------------
31
+ Fixing bugs around :delete action and cache clean
32
+ Fixing specs to cover :remove and :delete aliasing properly
33
+ Adding Travis-ci build matrix bits
34
+
35
+
36
+ v3.1.0 (2014-02-13)
37
+ -------------------
38
+ - Updating testing harness for integration testing on Travis-ci
39
+ - Adding TESTING.md and Guardfile
40
+ - PR #67 - Add skip_if_unvailable repository option
41
+ - PR #64 - Fix validation of 'metadata_expire' option to match documentation
42
+ - [COOK-3591] - removing node.name from repo template rendering
43
+ - [COOK-4275] - Enhancements to yum cookbook
44
+ - Adding full spec coverage
45
+ - Adding support for custom source template to yum_repository
46
+
47
+
48
+ v3.0.8 (2014-01-27)
49
+ -------------------
50
+ Fixing typo in default.rb. yum_globalconfig now passes proxy attribute correctly.
51
+
52
+
53
+ v3.0.6 (2014-01-27)
54
+ -------------------
55
+ Updating default.rb to consume node['yum']['main']['proxy']
56
+
57
+
58
+ v3.0.4 (2013-12-29)
59
+ -------------------
60
+ ### Bug
61
+ - **[COOK-4156](https://tickets.opscode.com/browse/COOK-4156)** - yum cookbook creates a yum.conf with "cachefir" directive
62
+
63
+
64
+ v3.0.2
65
+ ------
66
+ Updating globalconfig provider for Chef 10 compatability
67
+
68
+
69
+ v3.0.0
70
+ ------
71
+ 3.0.0
72
+ Major rewrite with breaking changes.
73
+ Recipes broken out into individual cookbooks
74
+ yum_key resource has been removed
75
+ yum_repository resource now takes gpgkey as a URL directly
76
+ yum_repository actions have been reduced to :create and :delete
77
+ 'name' has been changed to repositoryid to avoid ambiguity
78
+ chefspec test coverage
79
+ gpgcheck is set to 'true' by default and must be explicitly disabled
80
+
81
+
82
+ v2.4.4
83
+ ------
84
+ Reverting to Ruby 1.8 hash syntax.
85
+
86
+
87
+ v2.4.2
88
+ ------
89
+ [COOK-3275] LWRP repository.rb :add method fails to create yum repo in
90
+ some cases which causes :update to fail Amazon rhel
91
+
92
+
93
+ v2.4.0
94
+ ------
95
+ ### Improvement
96
+ - [COOK-3025] - Allow per-repo proxy definitions
97
+
98
+
99
+ v2.3.4
100
+ ------
101
+ ### Improvement
102
+ - **[COOK-3689](https://tickets.opscode.com/browse/COOK-3689)** - Fix warnings about resource cloning
103
+ - **[COOK-3574](https://tickets.opscode.com/browse/COOK-3574)** - Add missing "description" field in metadata
104
+
105
+
106
+ v2.3.2
107
+ ------
108
+ ### Bug
109
+ - **[COOK-3145](https://tickets.opscode.com/browse/COOK-3145)** - Use correct download URL for epel `key_url`
110
+
111
+ v2.3.0
112
+ ------
113
+ ### New Feature
114
+ - [COOK-2924]: Yum should allow type setting in repo file
115
+
116
+ v2.2.4
117
+ ------
118
+ ### Bug
119
+ - [COOK-2360]: last commit to `yum_repository` changes previous behaviour
120
+ - [COOK-3015]: Yum cookbook test minitest to fail
121
+
122
+ v2.2.2
123
+ ------
124
+ ### Improvement
125
+ - [COOK-2741]: yum::elrepo
126
+ - [COOK-2946]: update tests, test kitchen support in yum cookbook
127
+
128
+ ### Bug
129
+ - [COOK-2639]: Yum cookbook - epel - always assumes url is a mirror list
130
+ - [COOK-2663]: Yum should allow metadata_expire setting in repo file
131
+ - [COOK-2751]: Update yum.ius_release version to 1.0-11
132
+
133
+ v2.2.0
134
+ ------
135
+ - [COOK-2189] - yum::ius failed on install (caused from rpm dependency)
136
+ - [COOK-2196] - Make includepkgs and exclude configurable for each repos
137
+ - [COOK-2244] - Allow configuring caching using attributes
138
+ - [COOK-2399] - yum cookbook LWRPs fail FoodCritic
139
+ - [COOK-2519] - Add priority option to Yum repo files
140
+ - [COOK-2593] - allow integer or string for yum priority
141
+ - [COOK-2643] - don't use conditional attribute for `yum_key` `remote_file`
142
+
143
+ v2.1.0
144
+ ------
145
+ - [COOK-2045] - add remi repository recipe
146
+ - [COOK-2121] - add `:create` action to `yum_repository`
147
+
148
+ v2.0.6
149
+ ------
150
+ - [COOK-2037] - minor style fixes
151
+ - [COOK-2038] - updated README
152
+
153
+ v2.0.4
154
+ ------
155
+ - [COOK-1908] - unable to install repoforge on CentOS 6 32 bit
156
+
157
+ v2.0.2
158
+ ------
159
+ - [COOK-1758] - Add default action for repository resource
160
+
161
+ v2.0.0
162
+ ------
163
+ This version changes the behavior of the EPEL recipe (most commonly used in other Chef cookbooks) on Amazon, and removes an attribute, `node['yum']['epel_release']`. See the README for details.
164
+
165
+ - [COOK-1772] - Simplify management of EPEL with LWRP
166
+
167
+ v1.0.0
168
+ ------
169
+ `mirrorlist` in the `yum_repository` LWRP must be set to the mirror list URI to use rather than setting it to true. See README.md.
170
+
171
+ - [COOK-1088] - use dl.fedoraproject.org for EPEL to prevent redirects
172
+ - [COOK-1653] - fix mirrorlist
173
+ - [COOK-1710] - support http proxy
174
+ - [COOK-1722] - update IUS version
175
+
176
+ v0.8.2
177
+ ------
178
+ - [COOK-1521] - add :update action to `yum_repository`
179
+
180
+ v0.8.0
181
+ ------
182
+ - [COOK-1204] - Make 'add' default action for yum_repository
183
+ - [COOK-1351] - option to not make the yum cache (via attribute)
184
+ - [COOK-1353] - x86_64 centos path fixes
185
+ - [COOK-1414] - recipe for repoforge
186
+
187
+ v0.6.2
188
+ ------
189
+ - Updated README to remove git diff artifacts.
190
+
191
+ v0.6.0
192
+ ------
193
+ - Default action for the yum_repository LWRP is now add.
194
+ - [COOK-1227] - clear Chefs internal cache after adding new yum repo
195
+ - [COOK-1262] - yum::epel should enable existing repo on Amazon Linux
196
+ - [COOK-1272], [COOK-1302] - update RPM file for CentOS / RHEL 6
197
+ - [COOK-1330] - update cookbook documentation on excludes for yum
198
+ - [COOK-1346] - retry remote_file for EPEL in case we get an FTP mirror
199
+
200
+
201
+ v0.5.2
202
+ ------
203
+ - [COOK-825] - epel and ius `remote_file` should notify the `rpm_package` to install
204
+
205
+ v0.5.0
206
+ ------
207
+ - [COOK-675] - add recipe for handling EPEL repository
208
+ - [COOK-722] - add recipe for handling IUS repository
209
+
210
+ v.0.1.2
211
+ ------
212
+ - Remove yum update in default recipe, that doesn't update caches, it updates packages installed.