rhtconsulting / puppet-jboss_admin

Puppet module for runtime configuration of a JBoss container
MIT License
15 stars 12 forks source link

sometimes booleans need to be quoted, and sometimes not, causes puppet to always run #44

Open itewk opened 9 years ago

itewk commented 9 years ago
Notice: /Stage[main]/Jboss::Config::Kerberos/Jboss_admin::Pattern::Security_domain_with_authentication_classic[host]/Jboss_admin::Resource::Login_module[/subsystem=security/security-domain=host/authentication=classic/login-module=Kerberos]/Jboss_resource[/subsystem=security/security-domain=host/authentication=classic/login-module=Kerberos]/options: options changed

'{"module-options"=>
  {"debug"=>"false",
   "keyTab"=>"file:///opt/jboss/envconfig/Keytabs/my.keytab",
   "doNotPrompt"=>"true",
   "useKeyTab"=>"true",
   "principal"=>"HTTP/http://mycorp.com/@MYCORP.COM",
   "storeKey"=>"true"}}' to

'{"module-options"=>
  {"debug"=>false,
   "keyTab"=>"file:///opt/jboss/envconfig/Keytabs/my.keytab",
   "doNotPrompt"=>true,
   "useKeyTab"=>true,
   "principal"=>"HTTP/http://mycorp.com/@MYCORP.COM",
   "storeKey"=>true}}'
itewk commented 9 years ago

this makes puppet run every time because i am not quoting booleans but jboss cli is