Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/apt-mirror/apt-mirror.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Drung <benjamin.drung@profitbricks.com>2016-11-08 19:22:56 +0300
committerBenjamin Drung <benjamin.drung@profitbricks.com>2016-11-08 19:22:56 +0300
commit408721e8f04f3e250744bcfde5b5caf0e864f1e8 (patch)
tree9d73dcbf3df29e2dd08b84be931e62a0be92ee09
parenta489c6d61f39bc9cf426e1d868be7fd71fabd3f5 (diff)
Revert "Include debian-installer components into the mirroring."
This reverts commit 591a52e67a40e8fee2e446de7c151845a03268a9. The standard way to include the installation components is via the mirror spec line, e.g.x deb-amd64 http://us.archive.ubuntu.com/ubuntu wily main restricted universe multiverse main/debian-installer This is a universal syntax, used by everybody in the same way. I think it would be better not for apt-mirror to fetch things I didn't ask for, and to simply continue it's current behavior of doing what it is asked to do. fixes #64
-rwxr-xr-xapt-mirror5
1 files changed, 0 insertions, 5 deletions
diff --git a/apt-mirror b/apt-mirror
index 91e9f83..a5024d9 100755
--- a/apt-mirror
+++ b/apt-mirror
@@ -430,10 +430,6 @@ foreach (@config_binaries)
add_url_to_download( $url . $_ . "/binary-" . $arch . "/Packages.gz" );
add_url_to_download( $url . $_ . "/binary-" . $arch . "/Packages.bz2" );
add_url_to_download( $url . $_ . "/binary-" . $arch . "/Packages.xz" );
- add_url_to_download( $url . $_ . "/debian-installer/binary-" . $arch . "/Release" );
- add_url_to_download( $url . $_ . "/debian-installer/binary-" . $arch . "/Packages.gz" );
- add_url_to_download( $url . $_ . "/debian-installer/binary-" . $arch . "/Packages.bz2" );
- add_url_to_download( $url . $_ . "/debian-installer/binary-" . $arch . "/Packages.xz" );
add_url_to_download( $url . $_ . "/i18n/Index" );
}
}
@@ -850,7 +846,6 @@ foreach (@config_binaries)
foreach $component (@components)
{
process_index_gz( $uri, "/dists/$distribution/$component/binary-$arch/Packages.gz" );
- process_index_gz( $uri, "/dists/$distribution/$component/debian-installer/binary-$arch/Packages.gz" );
}
}
else