JJ
JJ
It probably isn't, as `/var/cache/wget` But it's been there since older releases and I couldn't find a better place. Do you have any suggestions? 😄
Puppet has a `vardir` (https://docs.puppet.com/puppet/4.10/dirs_vardir.html) which I thought about, but don't think it's a good idea. Something in `/var/cache/` would be more appropriate, never thought about `biemond-wildfly`, but might be...
Hi, The rationale behind not direct supporting tarball/archive as a source for a module was to avoid dependencies of other modules to extract it. Basically you have two options for...
You should be able to do it with: ```puppet wildfly::cli { 'Remove old KeycloakDS': command => '/profile=auth-server-clustered/subsystem=datasources/data-source=KeycloakDS:remove', unless => '(result == h2) of /profile=auth-server-clustered/subsystem=datasources/data-source=KeycloakDS:read-attribute(name=driver-name)', } ```
In fact, if I understood correct. You'd need onlyif instead of unless.
Just a matter of updating the tests and the docs then?
Tests are passing locally with WF11 for major OS'es, just need to check with EL6 as @frozen3 suggested.
Your assumptions are right. Just read interfaces through Management API and it returned: `"inet-address" : { "EXPRESSION_VALUE" : "${jboss.bind.address.management:127.0.0.1}" }` Merged your PR, it fixes this error, but it's not...
Thanks for pointing this out. That's kind of odd, which Linux distribution/version are you using?
Just tested with OEL 7.3, and included a respective nodeset (https://github.com/biemond/biemond-wildfly/blob/master/spec/acceptance/nodesets/oel-73-x64.yml) to my test matrix. Unfortunately, I couldn't catch this error, so, let me suggest a few alternatives: - Change...