From e0c209703eac8c761060af4643f143bb14f6e161 Mon Sep 17 00:00:00 2001 From: Arthur Lutz Date: Wed, 24 Jan 2018 09:34:50 +0100 Subject: [PATCH 1/2] #32 use deb. instead of httpredir. --- pillar.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pillar.example b/pillar.example index 9285437..7680f67 100644 --- a/pillar.example +++ b/pillar.example @@ -52,7 +52,7 @@ apt: type: [binary, source] updates: distro: stable-updates - url: http://httpredir.debian.org/debian/ + url: http://deb.debian.org/debian/ comps: [main, contrib, non-free] raspbian: distro: wheezy @@ -61,7 +61,7 @@ apt: key_url: https://archive.raspbian.org/raspbian.public.key debian-jessie: distro: jessie - url: http://httpredir.debian.org/debian + url: http://deb.debian.org/debian type: [source] comps: [main, contrib, non-free] dropbox: From 8ec9a4a387b42ab527ecab1cfe11dcf47ef48da7 Mon Sep 17 00:00:00 2001 From: Arthur Lutz Date: Wed, 24 Jan 2018 09:37:07 +0100 Subject: [PATCH 2/2] #32 s/httpredir/deb/ --- apt/map.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apt/map.jinja b/apt/map.jinja index 798f055..46d9fb4 100644 --- a/apt/map.jinja +++ b/apt/map.jinja @@ -15,11 +15,11 @@ 'remove_preferences': false, 'clean_preferences_d': false, 'default_keyserver': 'pool.sks-keyservers.net', - 'default_url': 'http://httpredir.debian.org/debian/', + 'default_url': 'http://deb.debian.org/debian/', 'repositories': { 'sane_default': { 'distro': distribution, - 'url': 'http://httpredir.debian.org/debian/', + 'url': 'http://deb.debian.org/debian/', 'arch': arch, 'comps': ['main'], },