A module to install .rpm files #25
-
Some packages are distributed as |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
You can use a script to place/download the file in But I agree that it would be nice to have this integrated inside |
Beta Was this translation helpful? Give feedback.
-
The If that is the case, the issue comes from the module using You should try this by adding the URL to the RPM in the install section of an |
Beta Was this translation helpful? Give feedback.
-
You're right, using an URL as a package seems to work fine: https://github.com/marcinjahn/mj-os/actions/runs/9032211800/job/24819959513 |
Beta Was this translation helpful? Give feedback.
The
rpm-ostree
module might already support installing RPMs straight from a URL, as I believe therpm-ostree install
command does too.If that is the case, the issue comes from the module using
rpm-ostree override remove --install
when theremove
section is present, which might not support the feature.You should try this by adding the URL to the RPM in the install section of an
rpm-ostree
module without a remove section. If that works, we shall make the module detect URLs to install them properly withrpm-ostree install
, and document the feature.