Jaroslav Rohel

Results 18 comments of Jaroslav Rohel

In microdnf5, the "swap" command may be removed in the future in favor of a more powerful command (eg "do"), which will allow multiple actions to be combined in one...

Microdnf supports multiple public gpg repo keys. The problem is in the multi-line notation in the configuration file. Try to write all the keys on one line. Example: `gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql-2022 file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql`...

The solution may be to replace `*static_cast(value)` to `reinterpret_cast(value)`. But I'm not sure without analysing the code. The `reinterpret_cast` must be used carefully. It's just a quick idea.

@jamescassell Hi. Thank you for the PR. It's a good idea to support drop-in configuration folder. I would like to merge the code. But there are still some problems. 1....

Aliases were removed from the source code. They are now defined using configuration files.

I don't want to add any aliases to the source code. And I want to remove already existing aliases. From my point of view, aliases in source code are only...

Update: All aliases were removed from the source code. https://github.com/rpm-software-management/dnf5/pull/19 https://github.com/rpm-software-management/dnf5/pull/41 Aliases are now defined in configuration file. A distribution can add its own aliases. Be aware many aliases can...

@Conan-Kudo I hope that DNF5 will solve this in the future. Until then, I see one solution - a plugin for the libdnf context - via the plugin API I...

Today I created the libdnf "snapper" plugin. https://github.com/rpm-software-management/libdnf/pull/1120 However, it is only a prototype. I didn't test it. I don't have snapper support installed on my computer. I just looked...

@dmach This is exactly the reason why the PR is in WIP status and not merged. The implementation is working, but I'm still not sure where to put the code.