Skip to content

Commit

Permalink
Merge pull request #672 from voxpupuli/fix-freebsd-default-group
Browse files Browse the repository at this point in the history
  • Loading branch information
smortex authored Oct 8, 2023
2 parents 9dcd35b + 8172b27 commit 74399b1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
}

$group = $facts['os']['family'] ? {
'AIX' => 'system',
default => 'root'
'AIX' => 'system',
'FreeBSD' => 'wheel',
default => 'root'
}

$pip_lookup_path = $facts['os']['family'] ? {
Expand Down

0 comments on commit 74399b1

Please sign in to comment.