| The OS facts being reported for OracleLinux and Scientific Linux 7 look a bit suspect and are causing issues in the puppetlabs/puppetlabs-apache, as it queries the OS Family fact to determine compatibility OracleLinux 7 When using *Puppet 7 *(with Facter 4.0.30), we’re reporting the os facts as:
os => { |
architecture => "x86_64", |
family => "Ol", |
hardware => "x86_64", |
name => "Oracle", |
release => { |
full => "7.2", |
major => "7.2" |
},
|
However, on Puppet 6 (with Facter 3.14.12), these are the facts:
os => { |
architecture => "x86_64", |
family => "RedHat", |
hardware => "x86_64", |
name => "OracleLinux", |
release => { |
full => "7.2", |
major => "7", |
minor => "2" |
},
|
Scientific Linux 7 Puppet 7:
os => { |
architecture => "x86_64", |
family => "Rhel centos fedora", |
hardware => "x86_64", |
name => "Scientific", |
release => { |
full => "7.2", |
major => "7.2" |
}, |
selinux => { |
enabled => false |
} |
}
|
Puppet 6:
os => { |
architecture => "x86_64", |
family => "RedHat", |
hardware => "x86_64", |
name => "Scientific", |
release => { |
full => "7.2", |
major => "7", |
minor => "2" |
}, |
selinux => { |
enabled => false |
} |
}
|
|