Would anyone please assist me on this one? This fact seems to work, but it
doesn't return when called directly via facter --puppet noop, but the
resulting facts end up in the reports.
I'm at wits end with this. Thanks!
<snip>
utc_hour = Facter::Util::Resolution.exec(%q</bin/date -u +"%H">).chomp
Facter.add(:noop) do
setcode do
environment = Facter.value(:environment)
if environment.match("test|dev|qa")
result = false
else
if utc_hour.match("01|02|03|04|05|06|07|08|09|10")
result = false
else
result = true
end
end
result
end
end
</snip>
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/puppet-users/-/Ubou1ggrLusJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.