mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-12-02 02:23:53 +00:00
10 lines
337 B
Bash
10 lines
337 B
Bash
# remove the default firefox (from fedora) in favor of the flatpak
|
|
rpm-ostree override remove firefox firefox-langpacks
|
|
|
|
echo "-- Installing RPMs defined in recipe.yml --"
|
|
rpm_packages=$(yq '.rpms[]' < /etc/ublue-recipe.yml)
|
|
for pkg in $rpm_packages; do \
|
|
echo "Installing: ${pkg}" && \
|
|
rpm-ostree install $pkg; \
|
|
done
|
|
echo "---" |