You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support Fedora's rolling development "release", Rawhide
Since Rawhide is a rolling kind of release with no version numbers,
the operatingsystemrelease will actually return "Rawhide" instead
of any Integer. So we better check whether operatingsystemrelease
is an Integer before comparing numbers and cover Rawhide, too.
Copy file name to clipboardExpand all lines: manifests/params.pp
+1-1
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@
53
53
54
54
case$::osfamily {
55
55
'RedHat': {
56
-
if$::operatingsystem == 'Fedora' and $::operatingsystemrelease>= 19 {
56
+
if$::operatingsystem == 'Fedora' and (is_integer($::operatingsystemrelease) and $::operatingsystemrelease>= 19 or $::operatingsystemrelease == "Rawhide") {
0 commit comments