CyberShadow / aconfmgr

A configuration manager for Arch Linux
1.13k stars 40 forks source link

Glitches out with --yes #143

Open MenacingPerson opened 2 years ago

MenacingPerson commented 2 years ago

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

CyberShadow commented 2 years ago

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.

MenacingPerson commented 2 years ago

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 commented 2 years ago

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

CyberShadow commented 2 years ago

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.

MenacingPerson commented 2 years ago

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?

CyberShadow commented 2 years ago

There's two relevant situations that can occur here.

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

The second one is the one seen here:

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.