Skip to content

Commit 74399b1

Browse files
authored
Merge pull request #672 from voxpupuli/fix-freebsd-default-group
2 parents 9dcd35b + 8172b27 commit 74399b1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

manifests/params.pp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
}
1717

1818
$group = $facts['os']['family'] ? {
19-
'AIX' => 'system',
20-
default => 'root'
19+
'AIX' => 'system',
20+
'FreeBSD' => 'wheel',
21+
default => 'root'
2122
}
2223

2324
$pip_lookup_path = $facts['os']['family'] ? {

0 commit comments

Comments
 (0)