From 84af32a3e56c24c965ac036115c15ec67e60c21e Mon Sep 17 00:00:00 2001 From: Teja Swaroop Pothala Date: Wed, 18 Dec 2024 20:25:44 +0530 Subject: [PATCH 1/2] change thunderbird desktop file to thunderbird-esr - 1.16.0 --- src/ubuntu/install/thunderbird/install_thunderbird.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ubuntu/install/thunderbird/install_thunderbird.sh b/src/ubuntu/install/thunderbird/install_thunderbird.sh index 6c10fc6..0434540 100644 --- a/src/ubuntu/install/thunderbird/install_thunderbird.sh +++ b/src/ubuntu/install/thunderbird/install_thunderbird.sh @@ -48,8 +48,8 @@ elif [[ "${DISTRO}" == "fedora40" ]]; then cp /usr/share/applications/org.mozilla.thunderbird.desktop $HOME/Desktop/ chmod +x $HOME/Desktop/org.mozilla.thunderbird.desktop else - cp /usr/share/applications/thunderbird.desktop $HOME/Desktop/ - chmod +x $HOME/Desktop/thunderbird.desktop + cp /usr/share/applications/thunderbird-esr.desktop $HOME/Desktop/ + chmod +x $HOME/Desktop/thunderbird-esr.desktop fi # Cleanup for app layer From 58d085f755723e0014a7fbbedd82aa3de9693801 Mon Sep 17 00:00:00 2001 From: Teja Swaroop Pothala Date: Thu, 19 Dec 2024 01:15:41 +0530 Subject: [PATCH 2/2] fix thunderbird desktop file and slack gpg signature for opensuse - 1.16.0 --- src/ubuntu/install/slack/install_slack.sh | 4 ++-- src/ubuntu/install/thunderbird/install_thunderbird.sh | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/ubuntu/install/slack/install_slack.sh b/src/ubuntu/install/slack/install_slack.sh index 1c0678c..2c1c57b 100644 --- a/src/ubuntu/install/slack/install_slack.sh +++ b/src/ubuntu/install/slack/install_slack.sh @@ -22,8 +22,8 @@ if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almali dnf clean all fi elif [[ "${DISTRO}" == "opensuse" ]]; then - wget https://slack.com/gpg/slack_pubkey_20230710.gpg - rpm --import slack_pubkey_20230710.gpg + wget https://slack.com/gpg/slack_pubkey_20240822.gpg + rpm --import slack_pubkey_20240822.gpg zypper install -yn slack-${version}-0.1.el8.x86_64.rpm if [ -z ${SKIP_CLEAN+x} ]; then zypper clean --all diff --git a/src/ubuntu/install/thunderbird/install_thunderbird.sh b/src/ubuntu/install/thunderbird/install_thunderbird.sh index 0434540..fb34d50 100644 --- a/src/ubuntu/install/thunderbird/install_thunderbird.sh +++ b/src/ubuntu/install/thunderbird/install_thunderbird.sh @@ -47,9 +47,12 @@ if [[ "${DISTRO}" == "fedora39" ]]; then elif [[ "${DISTRO}" == "fedora40" ]]; then cp /usr/share/applications/org.mozilla.thunderbird.desktop $HOME/Desktop/ chmod +x $HOME/Desktop/org.mozilla.thunderbird.desktop -else +elif [ "${DISTRO}" == "opensuse" ]; then cp /usr/share/applications/thunderbird-esr.desktop $HOME/Desktop/ chmod +x $HOME/Desktop/thunderbird-esr.desktop +else + cp /usr/share/applications/thunderbird.desktop $HOME/Desktop/ + chmod +x $HOME/Desktop/thunderbird.desktop fi # Cleanup for app layer