Project

General

Profile

Actions

Bug #14582

closed

Improve package management error reporting to suggest avoiding virtual packages

Added by François ARMAND about 5 years ago. Updated almost 2 years ago.

Status:
Released
Priority:
N/A
Category:
Generic methods
Target version:
Severity:
Minor - inconvenience | misleading | easy workaround
UX impact:
User visibility:
Getting started - demo | first install | Technique editor and level 1 Techniques
Effort required:
Small
Priority:
56
Name check:
Reviewed
Fix check:
Checked
Regression:

Description

I did the technique in screenshot (only one generic method "package present", with only "vim" in "name" field).
Rudder reports error, with "rudder agent run -i":

   error: Error installing package 'vim'
   error: Method 'ncf_package' failed in some repairs
E| error         A_new_technique           install vim               vim                Presence of package vim in any version could not be repaired
   error: Method 'package_present' failed in some repairs
   error: Method 'A_new_technique' failed in some repairs

But the package was installed:

[root@agent1 vagrant]# yum install vim
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: ftp.pasteur.fr
 * extras: fr2.rpmfind.net
 * updates: centos.crazyfrogs.org
Package 2:vim-enhanced-7.4.160-5.el7.x86_64 already installed and latest version
Nothing to do

Related issues 1 (0 open1 closed)

Related to Rudder - Bug #15149: package management reporting broken when trying to use latest version and absent state ReleasedAlexis MoussetActions
Actions #1

Updated by François ARMAND about 5 years ago

So it seems to be because "vim" is not a package per se, it's a virtual package. So rudder agent try to find it, doesn't not find it, try to install it, succeed (well, it's already there), and try again to find it, and still doesn't find it.

There is no good solution to make that better, because yum is not able to answer "is vim installed?" properly.

Actions #2

Updated by Vincent MEMBRÉ about 5 years ago

  • Target version changed from 5.0.9 to 5.0.10
Actions #3

Updated by François ARMAND about 5 years ago

  • Subject changed from Package present generic method reports error but package is installed to For virtual package, package present generic method reports error but package is installed
Actions #4

Updated by François ARMAND about 5 years ago

  • Severity changed from Major - prevents use of part of Rudder | no simple workaround to Minor - inconvenience | misleading | easy workaround
  • Effort required set to Very Small
  • Priority changed from 70 to 79

So the problem is actually hard and goes like that:

- I asked for `vim
- `vim` is a virtual package
- cfengine code looks in "rpm qa" list and doesn't find it. It ask distrib package manager to correct that.
package manager tries to install it: it automatically chooses default virtual package for vim, say `vim-minimal`
- installation success!
- cfengine code looks again in "rpm -qa" but still doesn't find it: oh noes! Unknow error!

We don't have any simple mean to know what the package manager chose to install.

So the correct solution is to change report so that the user has a least a way to know where to look. Perhaps adding something like:

If you tried to install a virtual package, please use in place the concrete package you want to isntall. 
Actions #5

Updated by François ARMAND about 5 years ago

  • Assignee set to Alexis Mousset
  • Effort required changed from Very Small to Small
  • Priority changed from 79 to 66

It's still a C patch in cfengine :/

Actions #6

Updated by Vincent MEMBRÉ almost 5 years ago

  • Target version changed from 5.0.10 to 5.0.11
Actions #7

Updated by Vincent MEMBRÉ almost 5 years ago

  • Target version changed from 5.0.11 to 5.0.12
  • Priority changed from 66 to 65
Actions #8

Updated by Félix DALLIDET almost 5 years ago

  • Priority changed from 65 to 64

It is possible to make yum take virtual package into account without touching any cfengine C source code.
We are now only using the cfengine packages modules, and the yum one is in python.

We could make the module check in rpm -q (which is currently the case) but also check in the rpm local database via:

[root@server packages]# rpm -q --whatprovides vim
vim-enhanced-7.4.160-5.el7.x86_64

This should work and should not be too much work.
Still, this would also state that doing a "package absent" on a virtual package will remove all packages providing it, which may not be what we want.

Actions #9

Updated by Félix DALLIDET almost 5 years ago

Edit: Since cfengine does not let us pass args when listing installed packages, listing all virtual packages and their versions + arch (which is retrieved from their providers) will be too slow
to be usable.
Going back to the warning message.

Actions #10

Updated by Félix DALLIDET almost 5 years ago

  • Status changed from New to In progress
  • Assignee changed from Alexis Mousset to Félix DALLIDET
Actions #11

Updated by Félix DALLIDET almost 5 years ago

  • Status changed from In progress to Pending technical review
  • Assignee changed from Félix DALLIDET to Nicolas CHARLES
  • Pull Request set to https://github.com/Normation/ncf/pull/990
Actions #12

Updated by Félix DALLIDET almost 5 years ago

  • Status changed from Pending technical review to Pending release

Applied in changeset commit:99cc8b47575a2f382ae6a367e8e41c1318d6e879.

Actions #13

Updated by Vincent MEMBRÉ almost 5 years ago

  • Name check set to To do
Actions #14

Updated by Vincent MEMBRÉ almost 5 years ago

  • Fix check set to To do
Actions #15

Updated by Alexis Mousset almost 5 years ago

  • Name check changed from To do to Needs change
Actions #16

Updated by Alexis Mousset almost 5 years ago

  • Subject changed from For virtual package, package present generic method reports error but package is installed to Improve package management error reporting to suggest avoiding virtual packages
  • Name check changed from Needs change to Reviewed
Actions #17

Updated by Alexis Mousset almost 5 years ago

  • Fix check changed from To do to Error - Blocking
Actions #18

Updated by François ARMAND almost 5 years ago

  • Fix check changed from Error - Blocking to Checked

The warning correctly appear on an interactive run. Given that the use case is not that common, and that an interactive run display what is expected, I thing the correction is ok.

   error: Error installing package 'vim'
   error: Method 'ncf_package' failed in some repairs
   warning       packageManagement         None                      vim                If you tried to install a virtual package, please use in place the concrete package you want to install.
   error: Method 'package_state_options' failed in some repairs
E| error         packageManagement         Package                   vim                Presence of package vim in any version could not be repaired

I'm switching to "ok" for the fix.

Actions #19

Updated by Vincent MEMBRÉ almost 5 years ago

This bug has been fixed in Rudder 5.0.12 which was released today.

Actions #20

Updated by Vincent MEMBRÉ over 4 years ago

  • Related to Bug #15149: package management reporting broken when trying to use latest version and absent state added
Actions #21

Updated by Vincent MEMBRÉ over 4 years ago

  • Status changed from Pending release to Released
  • Priority changed from 64 to 61
Actions #22

Updated by Alexis Mousset almost 2 years ago

  • Project changed from 41 to Rudder
  • Category changed from Generic methods - Package Management to Generic methods
  • Priority changed from 61 to 56
Actions

Also available in: Atom PDF