43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
# -*- mode: python; coding: utf-8 -*-
|
|
|
|
include("mode/space")
|
|
header("Fichier de configuration principal de apt-mirror")
|
|
|
|
@# Valeurs par defauts
|
|
@#
|
|
@# 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 defaultarch <running host architecture>
|
|
@# set nthreads 1
|
|
@#
|
|
@set _tilde 0
|
|
@set base_path /mirror/apt-mirror
|
|
@set nthreads 2
|
|
|
|
def source(args):
|
|
%deb-i386 mirror + args
|
|
%deb-amd64 mirror + args
|
|
%deb-src mirror + args
|
|
|
|
@# +------+
|
|
@# | Etch |
|
|
@# +------+
|
|
|
|
mirror = ""
|
|
|
|
source("ftp://ftp.fr.debian.org/debian etch main contrib")
|
|
source("ftp://ftp.proxad.net/mirrors/volatile.debian.net etch/volatile main contrib")
|
|
source("ftp://security.debian.org/debian-security etch/updates main")
|
|
|
|
source("ftp://ftp.fr.debian.org/debian lenny main contrib")
|
|
source("ftp://ftp.proxad.net/mirrors/volatile.debian.net lenny/volatile main contrib")
|
|
source("ftp://security.debian.org/debian-security lenny/updates main")
|
|
|
|
@# +-------------------+
|
|
@# | Debian multimedia |
|
|
@# +-------------------+
|
|
|
|
source("http://debian-multimedia.gnali.org stable main")
|