Dan Webb
Dan Webb
Excellent! If you haven't already, add yourself to the org and mongo maintainers in this repo. https://github.com/sous-chefs/terraform-github-org
Hi there! Thanks for taking the time to submit an issue. We would happily accept a pull request to resolve this issue. If you need help or guidance on submitting,...
I do wonder if this is a simple as `default_env: true` here instead? If you fancy giving that a go be our guest. And please do shout up if you...
Instead of overwriting and possibly halting running programs we probably need to place AdoptOpenJDK in sub-folders and have alternatives take care of it for us. That way if files are...
Hi there! Thanks for taking the time to submit an issue. We would happily accept a pull request to resolve this issue. If you need help or guidance on submitting,...
These are the current attributes ```ruby # mod_auth_openids default['apache']['mod_auth_openid']['ref'] = 'v0.8' default['apache']['mod_auth_openid']['version'] = '0.8' default['apache']['mod_auth_openid']['source_url'] = "https://github.com/bmuller/mod_auth_openid/archive/#{node['apache']['mod_auth_openid']['ref']}.tar.gz" default['apache']['mod_auth_openid']['cache_dir'] = '/var/cache/mod_auth_openid' default['apache']['mod_auth_openid']['dblocation'] = "#{node['apache']['mod_auth_openid']['cache_dir']}/mod_auth_openid.db" default['apache']['mod_auth_openid']['configure_flags'] = case node['platform_family'] when 'freebsd' [...
I wonder if unified mode will fix this.. if you can drop us a full replication case here, I think I can work out a fix. Thanks!
Hi! thanks for submitting an issue. I think in this case you want to use the `:update` action. This should change the user only if it exists already. https://github.com/sous-chefs/postgresql/blob/master/resources/user.rb#L47-L73
You should just be able to do ```ruby postgresql_user "Bob" do create_user postgresql_credentials['user_name'] password postgresql_credentials['user_password'] createdb true action :update end ``` If that *does* fire every turn, we would need...
Do you fancy having a go at amending this test to work? Sounds like you have a few test cases we can put together too.