From fe58b933541ba91d70889a54905705ec1ab63209 Mon Sep 17 00:00:00 2001 From: Tommy Date: Fri, 1 Dec 2023 20:29:52 -0700 Subject: [PATCH] fwupd already included in Fedora Workstation Signed-off-by: Tommy --- Fedora-Workstation-38.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Fedora-Workstation-38.sh b/Fedora-Workstation-38.sh index 1562091..b4560f8 100644 --- a/Fedora-Workstation-38.sh +++ b/Fedora-Workstation-38.sh @@ -131,6 +131,10 @@ sudo dnf -y install gnome-console git-core gnome-shell-extension-appindicator gn # Enable auto TRIM sudo systemctl enable fstrim.timer +# Setup fwupd +echo 'UriSchemes=file;https' | sudo tee -a /etc/fwupd/fwupd.conf +sudo systemctl restart fwupd + ### Differentiating bare metal and virtual installs # Installing tuned first here because virt-what is 1 of its dependencies anyways @@ -166,11 +170,4 @@ if [ "$virt_type" = "" ]; then sudo dracut -f fi -# Setup fwupd -if [ "$virt_type" = "" ]; then - sudo dnf install fwupd -y - echo 'UriSchemes=file;https' | sudo tee -a /etc/fwupd/fwupd.conf - sudo systemctl restart fwupd -fi - output "The script is done. You can also remove gnome-terminal since gnome-console will replace it."