Unverified Commit 03c5bb88 authored by Nathan Ward's avatar Nathan Ward Committed by GitHub
Browse files

Merge pull request #169 from sircubbi/main

add Rocky to list of Redhat-dists, update supported OSes and versions
parents 0541d259 07bfd84d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3,11 +3,12 @@ class freeradius::params {

  # Make an educated guess which version of FR we are running, based on the OS
  case $::operatingsystem {
    /RedHat|CentOS/: {
    /RedHat|CentOS|Rocky/: {
      $fr_guessversion = $::operatingsystemmajrelease ? {
        5       => '2',
        6       => '2',
        7       => '3',
        8       => '3',
        default => '3',
      }
    }
+15 −1
Original line number Diff line number Diff line
@@ -37,7 +37,21 @@
    {
      "operatingsystem": "RedHat",
      "operatingsystemrelease": [
        "7"
        "7",
        "8"
      ]
    },
    {
      "operatingsystem": "CentOS",
      "operatingsystemrelease": [
        "7",
        "8"
      ]
    },
    {
      "operatingsystem": "Rocky",
      "operatingsystemrelease": [
        "8"
      ]
    },
    {