File tree 5 files changed +16
-2
lines changed 5 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -46,3 +46,8 @@ vendor/
46
46
.vagrant /
47
47
.vagrant.d /
48
48
.kitchen /
49
+
50
+ # github
51
+ .bundle /
52
+ .github /
53
+ bin /
Original file line number Diff line number Diff line change 2
2
3
3
This file is used to list changes made in each version of the iis cookbook.
4
4
5
+ ## v4.1.9 (2016-06-26)
6
+
7
+ - Resolves [ Add deprecation warnings for iis_config in 4.2] ( https://github.com/chef-cookbooks/iis/issues/284 )
8
+ - Resolves [ iis_pool is not idempotent when recycle_at_time is specified and is not changed] ( https://github.com/chef-cookbooks/iis/issues/279 )
9
+
5
10
## v4.1.8 (2016-04-15)
6
11
7
12
- Fixed smp_processor_affinity_mask throwing deprecation warnings
Original file line number Diff line number Diff line change 4
4
license 'Apache 2.0'
5
5
description 'Installs/Configures Microsoft Internet Information Services'
6
6
long_description IO . read ( File . join ( File . dirname ( __FILE__ ) , 'README.md' ) )
7
- version '4.1.8 '
7
+ version '4.1.9 '
8
8
supports 'windows'
9
9
depends 'windows' , '>= 1.34.6'
10
10
source_url 'https://github.com/chef-cookbooks/iis' if respond_to? ( :source_url )
Original file line number Diff line number Diff line change 27
27
28
28
# :config deprecated, use :set instead
29
29
action :config do
30
+ Chef ::Log . warn <<-eos
31
+ Use of action `:config` in resource `iis_config` is now deprecated and will be removed in a future release (v4.2.0).
32
+ `:set` should be used instead.
33
+ eos
30
34
new_resource . updated_by_last_action ( true ) if config
31
35
end
32
36
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ def configure
236
236
configure_application_pool ( is_new_ping_response_time , "processModel.pingResponseTime:#{ new_resource . ping_response_time } " )
237
237
238
238
node_array = XPath . match ( doc . root , 'APPPOOL/add/recycling/periodicRestart/schedule/add' )
239
- should_clear_apppool_schedules = ( ( new_resource . recycle_at_time && is_new_recycle_at_time ) || !node_array . empty? ) || ( new_resource . recycle_schedule_clear && !node_array . empty? )
239
+ should_clear_apppool_schedules = ( ( new_resource . recycle_at_time && is_new_recycle_at_time ) && !node_array . empty? ) || ( new_resource . recycle_schedule_clear && !node_array . empty? )
240
240
241
241
# recycling items
242
242
## Special case this collection removal for now.
You can’t perform that action at this time.
0 commit comments