Re: [Puppet Users] Case Trouble w/ Boolean
Hi, the sledge hammer approach: file { 'couchdb.yaml': path=> '/etc/dd-agent/conf.d/couchdb.yaml', ensure => $couchDbServer ? { true => "present", default => "absent", }, content =>
[Puppet Users] Case Trouble w/ Boolean
Hey there, Thanks for taking the time to read this. My end objective is to utilize a yaml boolean, in this case couchDbServer, as an entry for a case that dictates whether a file is present or not. I do not want to use stdlib to achieve this. Following is the code: class datadog { $dat