We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fbfcd7 commit 9f50dbcCopy full SHA for 9f50dbc
manifests/client/params.pp
@@ -3,13 +3,6 @@
3
$package_ensure = pick($mongodb::globals::version, 'present')
4
$manage_package = pick($mongodb::globals::manage_package, $mongodb::globals::manage_package_repo, false)
5
6
- if $manage_package {
7
- $package_name = "mongodb-${mongodb::globals::edition}-shell"
8
- } else {
9
- $package_name = $facts['os']['family'] ? {
10
- 'Debian' => 'mongodb-clients',
11
- 'Redhat' => "mongodb-${mongodb::globals::edition}-shell",
12
- default => 'mongodb',
13
- }
14
+ # the new mongosh package is the same for all dsitros.
+ $package_name = 'mongodb-mongosh'
15
}
0 commit comments