Details
-
Bug
-
Status: Closed
-
Normal
-
Resolution: Fixed
-
FACT 3.12.0
-
None
-
Night's Watch
-
PR - 2019-04-03, PR - 2019-04-17, PR - 2019-05-02, PR - 2019-05-15, PR - 2019-05-29, PR - 2019-06-12, PR - 2019-06-25
-
Needs Assessment
-
Enhancement
-
-
Needs Assessment
Description
Facter 3.12.0 ships d9c30e5 which adds support for VirtuozzoLinux. This breaks parsing the release information. Instead, as a fallback, kernel version will be returned:
Version 3.12.0:
os => {
|
architecture => "x86_64",
|
family => "Linux",
|
hardware => "x86_64",
|
name => "VirtuozzoLinux",
|
release => {
|
full => "3.10.0-693.17.1.vz7.43.10",
|
major => "3",
|
minor => "10"
|
},
|
selinux => {
|
enabled => false
|
}
|
}
|
Version 3.11.4:
{
|
architecture => "x86_64",
|
family => "RedHat",
|
hardware => "x86_64",
|
name => "RedHat",
|
release => {
|
full => "7.5",
|
major => "7",
|
minor => "5"
|
},
|
selinux => {
|
enabled => false
|
}
|
}
|
In case of VirtuozzoLinux Facter should also return the correct release information. It's still in redhat-release:
# cat /etc/redhat-release
|
Virtuozzo Linux release 7.5
|