-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Build]: Use one debian mirror config (#10274)
Why I did it Use one debian mirror config. The empty config in https://github.com/Azure/sonic-buildimage/blob/master/files/image_config/apt/sources.list overrides the file https://github.com/Azure/sonic-buildimage/blob/master/files/apt/sources.list.amd64 (armhf/arm64), it does not make sense. All the content in files/image_config/apt is no use, any one wants to add mirror config, please add in files/apt. How I did it Remove files/image_config/apt and the reference.
- Loading branch information
Showing
9 changed files
with
30 additions
and
89 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 |
---|---|---|
@@ -1,15 +1,13 @@ | ||
## Debian mirror on Microsoft Azure | ||
## Ref: http://debian-archive.trafficmanager.net/ | ||
|
||
deb [arch=amd64] http://deb.debian.org/debian/ bullseye main contrib non-free | ||
deb-src [arch=amd64] http://deb.debian.org/debian/ bullseye main contrib non-free | ||
#deb [arch=amd64] http://debian-archive.trafficmanager.net/debian/ bullseye main contrib non-free | ||
#deb-src [arch=amd64] http://debian-archive.trafficmanager.net/debian/ bullseye main contrib non-free | ||
#deb [arch=amd64] http://debian-archive.trafficmanager.net/debian-security/ bullseye/updates main contrib non-free | ||
#deb-src [arch=amd64] http://debian-archive.trafficmanager.net/debian-security/ bullseye/updates main contrib non-free | ||
#deb [arch=amd64] http://debian-archive.trafficmanager.net/debian/ bullseye-backports main contrib non-free | ||
#deb [arch=amd64] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
#deb-src [arch=amd64] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
#deb [arch=amd64] http://packages.trafficmanager.net/debian/debian-security/ bullseye_updates main contrib non-free | ||
#deb-src [arch=amd64] http://packages.trafficmanager.net/debian/debian-security/ bullseye_updates main contrib non-free | ||
#deb [arch=amd64] http://packages.trafficmanager.net/debian/debian bullseye-backports main contrib non-free | ||
deb [arch=amd64] http://debian-archive.trafficmanager.net/debian/ bullseye main contrib non-free | ||
deb-src [arch=amd64] http://debian-archive.trafficmanager.net/debian/ bullseye main contrib non-free | ||
deb [arch=amd64] http://debian-archive.trafficmanager.net/debian-security/ bullseye-security main contrib non-free | ||
deb-src [arch=amd64] http://debian-archive.trafficmanager.net/debian-security/ bullseye-security main contrib non-free | ||
deb [arch=amd64] http://debian-archive.trafficmanager.net/debian/ bullseye-backports main contrib non-free | ||
deb [arch=amd64] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
deb-src [arch=amd64] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
deb [arch=amd64] http://packages.trafficmanager.net/debian/debian-security/ bullseye-security main contrib non-free | ||
deb-src [arch=amd64] http://packages.trafficmanager.net/debian/debian-security/ bullseye-security main contrib non-free | ||
deb [arch=amd64] http://packages.trafficmanager.net/debian/debian bullseye-backports main contrib non-free |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
## Debian mirror for ARM | ||
## Not the repo mirror site can change in future, and needs to be updated to be in sync | ||
|
||
deb [arch=arm64] http://deb.debian.org/debian bullseye main contrib non-free | ||
deb-src [arch=arm64] http://deb.debian.org/debian bullseye main contrib non-free | ||
deb [arch=arm64] http://deb.debian.org/debian bullseye-updates main contrib non-free | ||
deb-src [arch=arm64] http://deb.debian.org/debian bullseye-updates main contrib non-free | ||
deb [arch=arm64] http://ftp.debian.org/debian bullseye-backports main | ||
# deb [arch=arm64] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
# deb-src [arch=arm64] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
# deb [arch=arm64] http://packages.trafficmanager.net/debian/debian bullseye-updates main contrib non-free | ||
# deb-src [arch=arm64] http://packages.trafficmanager.net/debian/debian bullseye-updates main contrib non-free | ||
# deb [arch=arm64] http://packages.trafficmanager.net/debian/debian bullseye-backports main | ||
deb [arch=arm64] http://debian-archive.trafficmanager.net/debian/ bullseye main contrib non-free | ||
deb-src [arch=arm64] http://debian-archive.trafficmanager.net/debian/ bullseye main contrib non-free | ||
deb [arch=arm64] http://debian-archive.trafficmanager.net/debian-security/ bullseye-security main contrib non-free | ||
deb-src [arch=arm64] http://debian-archive.trafficmanager.net/debian-security/ bullseye-security main contrib non-free | ||
deb [arch=arm64] http://debian-archive.trafficmanager.net/debian/ bullseye-backports main contrib non-free | ||
deb [arch=arm64] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
deb-src [arch=arm64] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
deb [arch=arm64] http://packages.trafficmanager.net/debian/debian-security/ bullseye-security main contrib non-free | ||
deb-src [arch=arm64] http://packages.trafficmanager.net/debian/debian-security/ bullseye-security main contrib non-free | ||
deb [arch=arm64] http://packages.trafficmanager.net/debian/debian bullseye-backports main contrib non-free |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
## Debian mirror for ARM | ||
## Not the repo mirror site can change in future, and needs to be updated to be in sync | ||
|
||
deb [arch=armhf] http://deb.debian.org/debian bullseye main contrib non-free | ||
deb-src [arch=armhf] http://deb.debian.org/debian bullseye main contrib non-free | ||
deb [arch=armhf] http://deb.debian.org/debian bullseye-updates main contrib non-free | ||
deb-src [arch=armhf] http://deb.debian.org/debian bullseye-updates main contrib non-free | ||
deb [arch=armhf] http://ftp.debian.org/debian bullseye-backports main | ||
# deb [arch=armhf] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
# deb-src [arch=armhf] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
# deb [arch=armhf] http://packages.trafficmanager.net/debian/debian bullseye-updates main contrib non-free | ||
# deb-src [arch=armhf] http://packages.trafficmanager.net/debian/debian bullseye-updates main contrib non-free | ||
# deb [arch=armhf] http://packages.trafficmanager.net/debian/debian bullseye-backports main | ||
deb [arch=armhf] http://debian-archive.trafficmanager.net/debian/ bullseye main contrib non-free | ||
deb-src [arch=armhf] http://debian-archive.trafficmanager.net/debian/ bullseye main contrib non-free | ||
deb [arch=armhf] http://debian-archive.trafficmanager.net/debian-security/ bullseye-security main contrib non-free | ||
deb-src [arch=armhf] http://debian-archive.trafficmanager.net/debian-security/ bullseye-security main contrib non-free | ||
deb [arch=armhf] http://debian-archive.trafficmanager.net/debian/ bullseye-backports main contrib non-free | ||
deb [arch=armhf] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
deb-src [arch=armhf] http://packages.trafficmanager.net/debian/debian bullseye main contrib non-free | ||
deb [arch=armhf] http://packages.trafficmanager.net/debian/debian-security/ bullseye-security main contrib non-free | ||
deb-src [arch=armhf] http://packages.trafficmanager.net/debian/debian-security/ bullseye-security main contrib non-free | ||
deb [arch=armhf] http://packages.trafficmanager.net/debian/debian bullseye-backports main contrib non-free |
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
This file was deleted.
Oops, something went wrong.
Empty file.
3 changes: 0 additions & 3 deletions
3
files/image_config/apt/sources.list.d/amd64/debian_archive_trafficmanager_net_debian.list
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
files/image_config/apt/sources.list.d/arm64/debian_mirror_arm64.list
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
files/image_config/apt/sources.list.d/armhf/debian_mirror_armhf.list
This file was deleted.
Oops, something went wrong.