The cookbook currently sets packager options for use when installing MongoDB. Unfortunately, it's not available as an attribute, which means that the packager options can't be modified without forking the cookbook.
This changes that, moving the code used to determine the packager options to the attributes/default.rb file and then accessing that in the installation recipe via node[:mongodb][:packager_options].
The cookbook currently sets packager options for use when installing MongoDB. Unfortunately, it's not available as an attribute, which means that the packager options can't be modified without forking the cookbook.
This changes that, moving the code used to determine the packager options to the
attributes/default.rb
file and then accessing that in the installation recipe vianode[:mongodb][:packager_options]
.— @citruspi