Justin Schuhmann

Results 90 comments of Justin Schuhmann

You would only want this to happen on first run though correct? On the next run you wouldn't want it to replace every time. Perhaps adding the action [:add, :replace]?...

That sounds like `[:create, :config]` there just currently isn't a `:config` action

@hh, this is interesting. On one hand being able to come into chef iis cookbook and easily build your config is desirable. On the otherhand, SSL certs aren't made by...

From #226 `certutil` is used to generate the ssl certificates...however this isn't in older versions of windows just 2008 and newer

@hh feel free to add this to the readme.md under advanced in a PR and i'll move it to master

seems unusual since the documentation is: `no_managed_code - allow Unmanaged Code in setting up IIS app pools is shutting down. - default is true - optional` which should mean that...

k, if i have time i'll write a specific test for just `no_managed_code` but i think i'd need more

Thanks for the clarification, currently hitting some deprecation issues then going to look into this

@idflyfish would this be what you are doing? ```ruby iis_pool 'test_no_managed_code' do no_managed_code false pipeline_mode :Integrated action [:add, :config, :start] end ``` then later ```ruby iis_pool 'test_no_managed_code' do no_managed_code true...