Skip to content

Commit

Permalink
fix(params): allow rocky 8 or 9
Browse files Browse the repository at this point in the history
  • Loading branch information
minorOffense authored Apr 4, 2024
1 parent 882154e commit a82745c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@

$server_package = $facts['os']['release']['major'] ? {
# RHEL 6 and 7 provide Gluster packages natively
/(6|7)/ => 'glusterfs-server',
/(6|7|8|9)/ => 'glusterfs-server',
default => false
}
$client_package = $facts['os']['release']['major'] ? {
/(6|7)/ => 'glusterfs-fuse',
/(6|7|8|9)/ => 'glusterfs-fuse',
default => false,
}

Expand Down

0 comments on commit a82745c

Please sign in to comment.