Details
-
Bug
-
Status: Resolved
-
Normal
-
Resolution: Fixed
-
None
-
None
Description
Facter represents structured facts as a list of paths e.g.
os => {
|
architecture => "x86_64",
|
family => "Darwin",
|
...
|
release => {
|
full => "20.3.0",
|
major => "20",
|
minor => "3"
|
}
|
}
|
will be represented as
os.architecture
|
os.family
|
os.release.full
|
os.release.major
|
os.release.minor
|
"os" is never represented as a fact name.
When we create a custom fact "os", we don't override the list of facts, we just create a new fact and add it to that list
os
|
os.architecture
|
os.family
|
os.release.full
|
os.release.major
|
os.release.minor
|