From e1a71ac2a9b4f1c343f4edd1f4f6630fcce6291a Mon Sep 17 00:00:00 2001 From: Tommy Date: Sun, 25 Aug 2024 11:58:05 -0700 Subject: [PATCH] Do not remove fwupd on RHEL for now RHEL has broken dependency resolution for this one Signed-off-by: Tommy --- RHEL-9.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/RHEL-9.sh b/RHEL-9.sh index 99afd47..145be51 100644 --- a/RHEL-9.sh +++ b/RHEL-9.sh @@ -164,7 +164,7 @@ sudo systemctl enable fstrim.timer ### Differentiating bare metal and virtual installs # Setup fwupd -if [ "$virtualization" = 'none' ]; then +#if [ "$virtualization" = 'none' ]; then sudo dnf install -y fwupd echo 'UriSchemes=file;https' | sudo tee -a /etc/fwupd/fwupd.conf sudo systemctl restart fwupd @@ -173,9 +173,9 @@ if [ "$virtualization" = 'none' ]; then sudo chmod 644 /etc/systemd/system/fwupd-refresh.service.d/override.conf sudo systemctl daemon-reload sudo systemctl enable --now fwupd-refresh.timer -else - sudo dnf remove -y fwupd -fi +#else +# sudo dnf remove -y fwupd +#fi # Setup tuned sudo dnf install -y tuned @@ -215,4 +215,4 @@ sudo chmod 644 /etc/issue.net # Final notes to the user output 'Server setup complete. To use unbound for DNS, you need to run the following commands:' output 'nmcli con mod ipv4.dns 127.0.0.1' -output 'nmcli con mod ipv6.dns ::1' \ No newline at end of file +output 'nmcli con mod ipv6.dns ::1'