| Given the fallowing config file
facts : { |
ttls : [ |
{ "custom_group": 30 days } |
] |
} |
|
fact-groups : { |
custom_group : ["os.family" ,"os.name"], |
}
|
with a custom group that contains two facts: `os.family` and `os.name` if we first run facter with `os.name` (facter os.name -c <path_to_config>) the cached file will be:
When we query for os.family (facter os.family -c <path_to_config>) we will get no results. This is due to the fact that the cache returns a resolved fact with nil value because it did not find `os.family` in the cache file. |