[LMA] the installation of the collectd package fails when the node has no Internet connectivity
Bug #1494186 reported by
Simon Pasquier
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Fuel Plugins |
Fix Committed
|
High
|
guillaume thouvenin |
Bug Description
Tested with MOS 7.0 RC2.
It happens sometimes that the compute nodes have no Internet connectivity (this is a separate bug to be filled in Fuel). The end result for the LMA collector is that the installation of the collectd package because it tries to install the recommended dependencies [1] which aren't included in the plugin package.
We need to make sure that:
1/ the list of dependencies that are required to install collectd is reduced to the minimum (eg do not install the recommended packages).
2/ all dependent packages are embedded in the plugin package.
Changed in fuel-plugins: | |
status: | Confirmed → Fix Committed |
To post a comment you must log in.
Two comments: apt.conf. d/99norecommand s that contains:
- We will start with a minimal list like this: collectd-core, libdbi1, librrd4, collectd
- We need to prevent apt-get to install recommended packages. So we maybe need to add a task in our plugin that configure apt to not install recommended packages. For example create a file /etc/apt/
APT::Install- Suggests "0"; Recommends "0";
APT::Install-