public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: "Maxim Yu. Osipov" <mosipov@ilbers.de>
To: isar-users@googlegroups.com
Subject: [PATCH 1/2] conf/distro: Use ftp.debian.org as default
Date: Tue,  5 Feb 2019 14:56:33 +0000	[thread overview]
Message-ID: <20190205145634.29665-1-mosipov@ilbers.de> (raw)

Switch to a neutral default.

One may select a particular mirror by defining in conf/local.conf
variable DISTRO_APT_PREMIRRORS -  append your preferred mirror
to the default URI in the format:
DISTRO_APT_PREMIRRORS = "ftp.debian.org my.preferred.mirror".

Suggested-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Maxim Yu. Osipov <mosipov@ilbers.de>
---
 meta-isar/conf/distro/debian-stretch-backports.list | 4 ++--
 meta/conf/distro/debian-buster.list                 | 8 ++++----
 meta/conf/distro/debian-jessie.list                 | 8 ++++----
 meta/conf/distro/debian-stretch.list                | 8 ++++----
 4 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/meta-isar/conf/distro/debian-stretch-backports.list b/meta-isar/conf/distro/debian-stretch-backports.list
index f606be5..6b744f3 100644
--- a/meta-isar/conf/distro/debian-stretch-backports.list
+++ b/meta-isar/conf/distro/debian-stretch-backports.list
@@ -1,2 +1,2 @@
-deb	http://ftp.de.debian.org/debian stretch-backports main
-deb-src	http://ftp.de.debian.org/debian stretch-backports main
+deb	http://ftp.debian.org/debian stretch-backports main
+deb-src	http://ftp.debian.org/debian stretch-backports main
diff --git a/meta/conf/distro/debian-buster.list b/meta/conf/distro/debian-buster.list
index 1e38f1a..206b7a5 100644
--- a/meta/conf/distro/debian-buster.list
+++ b/meta/conf/distro/debian-buster.list
@@ -1,6 +1,6 @@
-deb	http://ftp.de.debian.org/debian buster	main contrib non-free
-deb-src	http://ftp.de.debian.org/debian buster	main contrib non-free
-deb	http://ftp.de.debian.org/debian buster-updates	main contrib non-free
-deb-src	http://ftp.de.debian.org/debian buster-updates	main contrib non-free
+deb	http://ftp.debian.org/debian buster	main contrib non-free
+deb-src	http://ftp.debian.org/debian buster	main contrib non-free
+deb	http://ftp.debian.org/debian buster-updates	main contrib non-free
+deb-src	http://ftp.debian.org/debian buster-updates	main contrib non-free
 deb	http://security.debian.org	buster/updates	main contrib non-free
 deb-src	http://security.debian.org	buster/updates	main contrib non-free
diff --git a/meta/conf/distro/debian-jessie.list b/meta/conf/distro/debian-jessie.list
index 5143f4d..55e0eb8 100644
--- a/meta/conf/distro/debian-jessie.list
+++ b/meta/conf/distro/debian-jessie.list
@@ -1,6 +1,6 @@
-deb	http://ftp.de.debian.org/debian	jessie	main contrib non-free
-deb-src	http://ftp.de.debian.org/debian	jessie	main contrib non-free
-deb	http://ftp.de.debian.org/debian jessie-updates	main contrib non-free
-deb-src	http://ftp.de.debian.org/debian jessie-updates	main contrib non-free
+deb	http://ftp.debian.org/debian	jessie	main contrib non-free
+deb-src	http://ftp.debian.org/debian	jessie	main contrib non-free
+deb	http://ftp.debian.org/debian jessie-updates	main contrib non-free
+deb-src	http://ftp.debian.org/debian jessie-updates	main contrib non-free
 deb	http://security.debian.org	jessie/updates	main contrib non-free
 deb-src	http://security.debian.org	jessie/updates	main contrib non-free
diff --git a/meta/conf/distro/debian-stretch.list b/meta/conf/distro/debian-stretch.list
index d4f3de0..1ec86fb 100644
--- a/meta/conf/distro/debian-stretch.list
+++ b/meta/conf/distro/debian-stretch.list
@@ -1,6 +1,6 @@
-deb	http://ftp.de.debian.org/debian stretch	main contrib non-free
-deb-src	http://ftp.de.debian.org/debian stretch	main contrib non-free
-deb	http://ftp.de.debian.org/debian stretch-updates	main contrib non-free
-deb-src	http://ftp.de.debian.org/debian stretch-updates	main contrib non-free
+deb	http://ftp.debian.org/debian stretch	main contrib non-free
+deb-src	http://ftp.debian.org/debian stretch	main contrib non-free
+deb	http://ftp.debian.org/debian stretch-updates	main contrib non-free
+deb-src	http://ftp.debian.org/debian stretch-updates	main contrib non-free
 deb	http://security.debian.org	stretch/updates	main contrib non-free
 deb-src	http://security.debian.org	stretch/updates	main contrib non-free
-- 
2.11.0


             reply	other threads:[~2019-02-05 14:56 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-05 14:56 Maxim Yu. Osipov [this message]
2019-02-05 14:56 ` [PATCH 2/2] doc/user_manual: Document DISTRO_APT_PREMIRRORS Maxim Yu. Osipov
2019-02-06 13:15 ` [PATCH 1/2] conf/distro: Use ftp.debian.org as default Henning Schild
2019-02-06 14:01   ` Maxim Yu. Osipov
2019-02-08 14:33 ` Maxim Yu. Osipov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190205145634.29665-1-mosipov@ilbers.de \
    --to=mosipov@ilbers.de \
    --cc=isar-users@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox