mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-26 06:46:04 +00:00
Added RPM Fusion installation script
Script to install RPM Fusion on Fedora
This commit is contained in:
parent
1417ed73b2
commit
81b53da48c
26
src/commands/system-setup/fedora/rpm-fusion-setup.sh
Normal file
26
src/commands/system-setup/fedora/rpm-fusion-setup.sh
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
. "$(dirname "$0")/../../common-script.sh"
|
||||||
|
|
||||||
|
# https://rpmfusion.org/Configuration
|
||||||
|
|
||||||
|
installRPMFusion() {
|
||||||
|
case $PACKAGER in
|
||||||
|
dnf)
|
||||||
|
if [[ ! -e "/etc/yum.repos.d/rpmfusion-free.repo" ]]; then
|
||||||
|
echo "Installing RPM Fusion..."
|
||||||
|
sudo "$PACKAGER" install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
||||||
|
sudo "$PACKAGER" config-manager --enable fedora-cisco-openh264
|
||||||
|
echo "RPM Fusion installed"
|
||||||
|
else
|
||||||
|
echo "RPM Fusion already installed"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Unsupported distribution: $DTYPE"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
checkEnv
|
||||||
|
installRPMFusion
|
Loading…
Reference in New Issue
Block a user