aconfmgr icon indicating copy to clipboard operation
aconfmgr copied to clipboard

Glitches out with --yes

Open MenacingPerson opened this issue 3 years ago • 6 comments

General description of the problem:

When you use --yes, and when pacman asks to choose between 2 packages, it bugs out:

image

Steps to reproduce the problem:

  1. Have a scenario where pacman requires you to choose
  2. Use --yes flag in aconfmgr
  3. See bug

Configuration:

AddPackage initramfs

Expected result:

It would pass the --noconfirm flag to pacman instead of piping yes command to it

Actual result:

It basically pipes yes command to it

Log:

Can't copy, on a VM

Additional context:

No response

MenacingPerson avatar Mar 29 '22 13:03 MenacingPerson

It would pass the --noconfirm flag to pacman instead of piping yes command to it

We can't do that for package installation because pacman defaults some prompts to "no".

The workaround is to explicitly specify in your aconfmgr configuration the choices that pacman asks for, but I can't think of a panacea other than to change it in pacman (which the pacman maintainers may not be open to - presumably they made those prompts default to "no" for a reason) or use something complicated like expect.

CyberShadow avatar Mar 29 '22 13:03 CyberShadow

We can't do that for package installation because pacman defaults some prompts to "no".

I've dealt with that. Especially when a package is in conflict (wireplumber and pms).

MenacingPerson avatar Mar 29 '22 13:03 MenacingPerson

Maybe the pacman devs can add a --yes flag that says yes to everything, even questionable choices? Or maybe they'll reject that too?

MenacingPerson avatar Mar 29 '22 13:03 MenacingPerson

Right.

That said, if both situations can be resolved by changing the aconfmgr configuration to one such that pacman does not produce either type of prompt, then not piping yes is less evil, so maybe we could just try that first.

Maybe the pacman devs can add a --yes flag that says yes to everything, even questionable choices? Or maybe they'll reject that too?

Well, I don't know. They might very well say that pacman is meant to be a user-facing tool and they don't want to support users who stupidly ran it with --yes without thinking and that for automated non-interactive use cases we should build our own libalpm frontend, but that doesn't really work for aconfmgr.

CyberShadow avatar Mar 29 '22 13:03 CyberShadow

That said, if both situations can be resolved by changing the aconfmgr configuration to one such that pacman does not produce either type of prompt, then not piping yes is less evil, so maybe we could just try that first.

I don't understand what you mean.

Well, I don't know. They might very well say that pacman is meant to be a user-facing tool and they don't want to support users who stupidly ran it with --yes without thinking and that for automated non-interactive use cases we should build our own libalpm frontend, but that doesn't really work for aconfmgr.

They could make it stupidly long, something like --i-am-a-machine-i-do-not-care-if-this-breaks-my-system-and-pacman-devs-have-no-liability?

MenacingPerson avatar Mar 29 '22 13:03 MenacingPerson

There's two relevant situations that can occur here.

The first one is the one that cd1c4b0f46c23ddf763f37f9d6c930f272690d9f attempted to address:

  • Conditions: aconfmgr requests pacman to install a package which conflicts with another, previously-installed package (possibly a dependency which aconfmgr doesn't directly know about).
  • What happens: pacman asks if it should replace the package with the one specified on the command line (or the dependency of one).
  • How to automate: answer y.
  • How to work around: if we uninstall the old package first (and everything that requires it) before attempting to install its replacement, we could avoid such prompts. However, this might not be feasible in all cases. When the package in question is pinned (not a dependency), this already should be the case, as aconfmgr first uninstalls any unwanted packages before installing new ones.

The second one is the one seen here:

  • Conditions: aconfmgr requests pacman to install (usually by a dependency) a virtual package, i.e. something provided by several other packages.
  • What happens: pacman asks the user which package it should install.
  • How to automate: answer 1 or the correct choice.
  • How to work around: specify the wanted package explicitly among the list of packages to install, so pacman doesn't have to guess or ask the user.

It does look like the user has a more reliable workaround for the second situation, but maybe there's something more we can do for the first case that would not involve piping yes.

CyberShadow avatar Mar 29 '22 14:03 CyberShadow