* chore: Remove usage of `yq` in favor of `jq` * fix: Missed bracket in `default-flatpaks` * fix: `get_json_array` complaining about unpopulated arrays * fix(files): Forgot to input `-r` flag for some `jq` calls * fix(gschema-overrides): Use `try` in `get_json_array` * chore(default-flatpaks): Replace `yq` with `jq` in run-time setup binaries * chore: Switch to simplified `jq` syntax without brackets * chore(default-flatpaks): Switch `repo-info` file from `yml` to `json` * fix(default-flatpaks): Some `yq` calls * chore: Revert back to bracket syntax for more reliable `jq` parsing * chore(files): Missed bracket syntax * chore: Approve bot suggestion about quoting Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update modules/files/files.sh Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix(yafti): Populating custom flatpaks It's populated in reverse order compared to the format in recipe, but it works * fix(fonts): Variable substitution is needed * fix: Typo * fix(fonts): Forgot to assign FONTS variable --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ENABLE_AKMODS_REPO() {
|
|
sed -i 's@enabled=0@enabled=1@g' /etc/yum.repos.d/_copr_ublue-os-akmods.repo
|
|
}
|
|
|
|
INSTALL_RPM_FUSION() {
|
|
if ! rpm -q rpmfusion-free-release &>/dev/null && ! rpm -q rpmfusion-nonfree-release &>/dev/null; then
|
|
rpm-ostree install \
|
|
https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-${OS_VERSION}.noarch.rpm \
|
|
https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-${OS_VERSION}.noarch.rpm
|
|
previously_not_installed_rpm_fusion=true
|
|
else
|
|
previously_not_installed_rpm_fusion=false
|
|
fi
|
|
}
|
|
|
|
UNINSTALL_RPM_FUSION() {
|
|
if "${previously_not_installed_rpm_fusion}"; then
|
|
rpm-ostree uninstall rpmfusion-free-release rpmfusion-nonfree-release
|
|
fi
|
|
}
|
|
|
|
get_json_array INSTALL 'try .["install"][]' "$1"
|
|
|
|
if [[ ${#INSTALL[@]} -lt 1 ]]; then
|
|
echo "ERROR: You didn't specify any akmod for installation!"
|
|
exit 1
|
|
fi
|
|
|
|
INSTALL_PATH=("${INSTALL[@]/#/\/tmp/rpms/kmods/*}")
|
|
INSTALL_PATH=("${INSTALL_PATH[@]/%/*.rpm}")
|
|
INSTALL_STR=$(echo "${INSTALL_PATH[*]}" | tr -d '\n')
|
|
|
|
# Universal Blue switched from RPMFusion to negativo17 repos
|
|
# WL & V4L2Loopback akmods currently require RPMFusion repo, so we temporarily install then uninstall it
|
|
|
|
echo "Installing akmods"
|
|
echo "Installing: $(echo "${INSTALL[*]}" | tr -d '\n')"
|
|
ENABLE_AKMODS_REPO
|
|
INSTALL_RPM_FUSION
|
|
rpm-ostree install ${INSTALL_STR}
|
|
UNINSTALL_RPM_FUSION
|