Bogdan Katyński

Results 3 issues of Bogdan Katyński

This snippet from providers/instance.rb demonstrate the issue: ```ruby @create_account = new_resource.create_account || Logstash.get_attribute_or_default(node, @name, 'create_account') ``` when new_resource.create_account is set to false, `Logstash.get_attribute_or_default(node, @name, 'create_account')` is getting invoked because this...

This commit fixes a bug where boolean properties of the `instance’ resource were getting overriden by default values when they were set to false. Fixes #489 Signed-off-by: Bogdan Katynski

I need to read the host processes from a docker container. I can mount the host's /proc read only into the docker container but need to point procs at a...