Chef IIS Cookbook thirty_two_bit option not working -
i have resource block create app pool, make thirty_two_bit option true , assign username , password.
iis_pool 'cpool' runtime_version "2.0" pipeline_mode :"classic" recycle_after_time "0" thirty_two_bit true pool_username "testuser" pool_password "testpd" action :add
it creates app pool following options didn't work.
recycle_after_time "0" thirty_two_bit true pool_username "testuser" pool_password "testpd"
i wondering if bug. notes on appreciated - eben
you mixing 2 different actions together. viewing chef source here can tell want call both :add
create pool , :config
rest. break as:
iis_pool 'cpool' runtime_version "2.0" pipeline_mode :"classic" action :add iis_pool 'cpool' recycle_after_time "0" thirty_two_bit true pool_username "testuser" pool_password "testpd" action :config
Comments
Post a Comment