-
Notifications
You must be signed in to change notification settings - Fork 11
YUM error shows on output #143
Comments
That's interesting!! |
In our code, we're executing |
I'm setting up Fedora 39 on my VM. |
Mind you I'm running Bluefin which is a version of Fedora Silverblue, the immutable version of Fedora. It doesn't ship with dnf. |
So, does |
Well, |
Also, I can see in your output |
Gives the same error. |
I think for immutable/atomic Fedora systems it would be nice to show how many packages are installed or 'layered' via rpm-ostree. |
Yupp! if (Path::of("/var/lib/rpm"s).isExecutable())
{
Command::exec_async("rpm -qa"s, [&](auto c) {
std::lock_guard<std::mutex> lock(mtx);
if (Path::of("/bin/dnf"s).isExecutable())
pkgs.push_back(rec{"dnf"s, c->getOutputLines()});
else if (Path::of("/bin/yum"s).isExecutable())
pkgs.push_back(rec{"yum"s, c->getOutputLines()});
else
pkgs.push_back(rec{"rpm"s, c->getOutputLines()});
});
} |
I'm curious, what does |
For immutable/atomic Fedora you us Output of ● fedora:fedora/35/x86_64/kinoite
Version: 35.20210924.n.0 (2021-09-24T08:10:09Z)
BaseCommit: 8ca0e98140307a1124c34b3f73001b1cdd29178115c4e5b1e6436e36b0e0f613
GPGSignature: Valid signature by 787EA6AE1147EEE56C40B30CDB4639719867C58F
RemovedBasePackages: firefox 91.0.1-2.fc35
LayeredPackages: zsh virt-manager vim doas fedora-workstation-repositories gstreamer1-plugin-openh264
fedora:fedora/35/x86_64/kinoite
Version: 35.20210923.n.0 (2021-09-23T08:13:58Z)
BaseCommit: 684ee39f6abc9a0b5bda5686a7eac92d02215ca42008a0bce38302bc1c280fef
GPGSignature: Valid signature by 787EA6AE1147EEE56C40B30CDB4639719867C58F
RemovedBasePackages: firefox 91.0.1-2.fc35
LayeredPackages: zsh virt-manager vim doas fedora-workstation-repositories gstreamer1-plugin-openh264 |
I think that would add more complexity. |
153d2e0 |
Running on fresh Fedora atomic I get this error showing up after GPU and before Packages:
The text was updated successfully, but these errors were encountered: