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:
authorBrandon Holtsclaw <me@brandonholtsclaw.com>2013-03-03 11:20:33 +0400
committerBrandon Holtsclaw <me@brandonholtsclaw.com>2013-03-03 11:20:33 +0400
commit0665f594e253ac3a4ff2f9dcdc5b6990b3c6774b (patch)
tree2043d9b0e8a9a2682ad99aba7f45fd34ecdb388f /mirror.list
parent7fede93d1d9d6c665366633c900f1a349c3f527b (diff)
added install.sh and mirror.list cleanup
Diffstat (limited to 'mirror.list')
-rw-r--r--mirror.list67
1 files changed, 18 insertions, 49 deletions
diff --git a/mirror.list b/mirror.list
index 3b4ee8a..9f2905f 100644
--- a/mirror.list
+++ b/mirror.list
@@ -1,53 +1,22 @@
-############# Config ##################
-#
-## default configuration options (uncomment and change to override)
-#
-#set base_path /var/spool/apt-mirror
-#
-## if you change the base path you must create the directories below with write privlages
-#
-#set mirror_path $base_path/mirror
-#set skel_path $base_path/skel
-#set var_path $base_path/var
-#set cleanscript $var_path/clean.sh
-#
-#set defaultarch <running host architecture>
-#set nthreads 20
-#set _tilde 0
-#
-## valid values for limit_rate are :
-## 10 for 10 Bytes/Second, 10k for 10 Kilobytes/Second, and 10m for 10 Megabytes/Second
-#
-#set limit_rate 100m
-#
-############# End Config ##############
+set base_path /var/spool/apt-mirror
+set mirror_path $base_path/mirror
+set skel_path $base_path/skel
+set var_path $base_path/var
+set postmirror_script $var_path/postmirror.sh
+set defaultarch i386
+set run_postmirror 0
+set nthreads 20
+set _tilde 0
-######### Mirroring List ##############
-#
-# supported apt-mirror list entries:
-#
-# debian source : deb-src http://...
-# default native arch : deb http://...
-# debian non-native arch : deb-$arch http://...
-# where $arch can = (alpha|amd64|armel|arm|hppa|hurd-i386|i386|ia64|lpia|m68k|mipsel|mips|powerpc|s390|sh|sparc)
-#
+deb http://archive.ubuntu.com/ubuntu precise main restricted universe multiverse
+deb http://archive.ubuntu.com/ubuntu precise-security main restricted universe multiverse
+deb http://archive.ubuntu.com/ubuntu precise-updates main restricted universe multiverse
+deb http://archive.ubuntu.com/ubuntu precise-backports main restricted universe multiverse
-deb http://ftp.us.debian.org/debian unstable main contrib non-free
-deb-src http://ftp.us.debian.org/debian unstable main contrib non-free
+#deb-src http://archive.ubuntu.com/ubuntu precise main restricted universe multiverse
+#deb-src http://archive.ubuntu.com/ubuntu precise-security main restricted universe multiverse
+#deb-src http://archive.ubuntu.com/ubuntu precise-updates main restricted universe multiverse
+#deb-src http://archive.ubuntu.com/ubuntu precise-backports main restricted universe multiverse
-#
-######### End Mirroring List ##########
+clean http://archive.ubuntu.com/ubuntu
-######### Cleaning Section ############
-#
-
-## directorys managed by apt-mirror
-clean http://ftp.us.debian.org/debian
-
-## directorys NOT managed by apt-mirror
-#skip-clean http://ftp.us.debian.org/debian-minicd/
-#skip-clean http://ftp.us.debian.org/debian/dists/sarge/main/installer-i386/
-#skip-clean http://ftp.us.debian.org/debian/dists/sid/main/installer-i386/
-
-#
-######### End Cleaning Section ########