1
0
mirror of https://github.com/tommytran732/Linux-Setup-Scripts synced 2024-11-09 03:31:33 -05:00

fwupd already included in Fedora Workstation

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2023-12-01 20:29:52 -07:00
parent ab9482c2f9
commit fe58b93354
No known key found for this signature in database
GPG Key ID: D30DEC268D3FEB17

View File

@ -131,6 +131,10 @@ sudo dnf -y install gnome-console git-core gnome-shell-extension-appindicator gn
# Enable auto TRIM # Enable auto TRIM
sudo systemctl enable fstrim.timer 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 ### Differentiating bare metal and virtual installs
# Installing tuned first here because virt-what is 1 of its dependencies anyways # Installing tuned first here because virt-what is 1 of its dependencies anyways
@ -166,11 +170,4 @@ if [ "$virt_type" = "" ]; then
sudo dracut -f sudo dracut -f
fi 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." output "The script is done. You can also remove gnome-terminal since gnome-console will replace it."