-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Firefox Rapid Release: update signing key
the signing key will be dual-signed for a long time but this new key will be eventually required by default on newer ubuntu/debian releases that have stricter rules on the signature cryptography format used
- Loading branch information
1 parent
c89ed8a
commit 52ead84
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,20 +44,20 @@ Pin-Priority: -1' | sudo tee /etc/apt/preferences.d/firefox >/dev/null | |
else | ||
# remove old ppa if present | ||
sudo rm -f /etc/apt/sources.list.d/mozillateam-ubuntu-ppa-bionic.list | ||
debian_ppa_installer "mozillateam/ppa" "jammy" "0AB215679C571D1C8325275B9BDB3D89CE49EC21" || exit 1 | ||
debian_ppa_installer "mozillateam/ppa" "jammy" "738BEB9321D1AAEC13EA9391AEBDF4819BE21867" || exit 1 | ||
echo 'Unattended-Upgrade::Allowed-Origins:: "LP-PPA-mozillateam:jammy";' | sudo tee /etc/apt/apt.conf.d/51unattended-upgrades-firefox >/dev/null | ||
install_packages firefox || error "User error (reporting allowed): Firefox is not available from Mozilla Team PPA for $arch Ubuntu Jammy (used for Debian Bookworm). Please contact Mozilla Team via email for any issues [email protected]" | ||
fi | ||
;; | ||
bullseye) | ||
# remove old ppa if present | ||
sudo rm -f /etc/apt/sources.list.d/mozillateam-ubuntu-ppa-bionic.list | ||
debian_ppa_installer "mozillateam/ppa" "focal" "0AB215679C571D1C8325275B9BDB3D89CE49EC21" || exit 1 | ||
debian_ppa_installer "mozillateam/ppa" "focal" "738BEB9321D1AAEC13EA9391AEBDF4819BE21867" || exit 1 | ||
echo 'Unattended-Upgrade::Allowed-Origins:: "LP-PPA-mozillateam:focal";' | sudo tee /etc/apt/apt.conf.d/51unattended-upgrades-firefox >/dev/null | ||
install_packages firefox || error "User error (reporting allowed): Firefox is not available from Mozilla Team PPA for $arch Ubuntu Focal (used for Debian Bullseye). Please contact Mozilla Team via email for any issues [email protected]" | ||
;; | ||
*) | ||
debian_ppa_installer "mozillateam/ppa" "bionic" "0AB215679C571D1C8325275B9BDB3D89CE49EC21" || exit 1 | ||
debian_ppa_installer "mozillateam/ppa" "bionic" "738BEB9321D1AAEC13EA9391AEBDF4819BE21867" || exit 1 | ||
echo 'Unattended-Upgrade::Allowed-Origins:: "LP-PPA-mozillateam:bionic";' | sudo tee /etc/apt/apt.conf.d/51unattended-upgrades-firefox >/dev/null | ||
install_packages firefox || error "User error (reporting allowed): Firefox is not available from Mozilla Team PPA for $arch Ubuntu Bionic. Please contact Mozilla Team via email for any issues [email protected]" | ||
;; | ||
|