From 78d5583a56d0107369dc32c577aef269b4632979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eric=20L=C3=B6ffler?= Date: Sat, 6 Jan 2024 06:19:22 +0100 Subject: [PATCH] remove extra ppa repo for firefox --- ubuntu-installer.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ubuntu-installer.sh b/ubuntu-installer.sh index 8c9e6ef..f76c57e 100755 --- a/ubuntu-installer.sh +++ b/ubuntu-installer.sh @@ -364,7 +364,6 @@ function task_manage_package_sources { # declare local variables local TRUSTED_GPG local SOURCES_LIST - local PREFERENCES local COMPONENTS # verify preconditions @@ -373,7 +372,6 @@ function task_manage_package_sources { # set variables TRUSTED_GPG='/etc/apt/trusted.gpg.d' SOURCES_LIST='/etc/apt/sources.list.d' - PREFERENCES='/etc/apt/preferences.d' COMPONENTS='main universe multiverse restricted' # by default, use the whole Ubuntu mirror list @@ -402,12 +400,6 @@ function task_manage_package_sources { chmod 644 "$TRUSTED_GPG/google-chrome.gpg" echo 'deb https://dl.google.com/linux/chrome/deb/ stable main' >"$SOURCES_LIST/google-chrome.list" - # add package sources for firefox - add-apt-repository -y ppa:mozillateam/ppa - echo 'Package: *' >"$PREFERENCES/mozilla-firefox" - echo 'Pin: release o=LP-PPA-mozillateam' >>"$PREFERENCES/mozilla-firefox" - echo 'Pin-Priority: 601' >>"$PREFERENCES/mozilla-firefox" - # update package lists apt-get update }