annotate DOCS/tech/mirrors/mirror_howto.txt @ 22887:dc3ff1498f69

Mention DNS round-robin system in the mirroring HOWTO.
author diego
date Tue, 03 Apr 2007 11:03:14 +0000
parents 92e4f4b5828f
children 0aaf6309be25
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
1 ------------------------------
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
2 How to build an MPlayer mirror
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
3 ------------------------------
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
4
22774
92e4f4b5828f the mirror howto isnt preliminary anymore
attila
parents: 20458
diff changeset
5 This document might be inacurate or even incomplete, please
92e4f4b5828f the mirror howto isnt preliminary anymore
attila
parents: 20458
diff changeset
6 send feedback + corrections to the mplayer-mirror mailing list.
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
7
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
8 About this document
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
9 ~~~~~~~~~~~~~~~~~~~
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
10
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
11 Mirroring MPlayer is quite easy but requires a few steps to be taken
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
12 and a few things taken care of. This document describes these steps
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
13 in detail so that anyone wishing to build an official or an unofficial
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
14 mirror can do that without much trouble.
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
15
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
16
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
17
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
18 A note on performance issues
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
19 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
20
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
21 A few of the commands used here will generate some load on our main server.
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
22 Too many clients executing them at once will overload our server and cause
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
23 a performance degradation for all our users. Thus we kindly ask you to be
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
24 considerate about what you do. We do not want to restrict mirroring to a
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
25 few select people, but this requires everyone using the system described
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
26 here to behave.
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
27
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
28
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
29 Outline of the mirroring system
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
30 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
31
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
32 The mirroring system uses rsync to transfer the data and to perform
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
33 updates. A script (update_mplayer_rsync) is provided to call the rsync
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
34 client with the right set of parameters. This script should be run
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
35 periodically via cron.
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
36 Additionally, official mirrors should set up an ssh account so that
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
37 updates can be triggered when important changes on the main server
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
38 are performed.
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
39 Mirrors should provide their data over HTTP or FTP or both. Each official
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
40 mirror will be assigned a mirror number (wwwXXX.mplayerhq.hu or
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
41 ftpXXX.mplayerhq.hu where XXX is the mirror number). This mirror
22887
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
42 number determines the hostname over which it can be reached directly.
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
43
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
44 All mirrors are put into our DNS round-robin for the www.mplayerhq.hu and
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
45 ftp.mplayerhq.hu names and should be set up to respond to these names as well.
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
46
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
47
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
48 Getting the data, mirroring script and cron setup
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
49 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
50
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
51 The mirroring script is located in our Subversion repository at
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
52
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
53 svn://svn.mplayerhq.hu/mplayer/trunk/DOCS/tech/mirrors/update_mplayer_rsync
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
54
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
55 or on the web at
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
56
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
57 http://svn.mplayerhq.hu/*checkout*/mplayer/trunk/DOCS/tech/mirrors/update_mplayer_rsync
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
58
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
59 This script requires a working `rsync` client. The handling of the
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
60 lock file is done by using `lockfile` from the procmail package.
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
61 Using a lock file is recommended but not necessary. The temporary file
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
62 generation is handled by `mktemp` which is available from
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
63 http://www.mktemp.org/mktemp/ .
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
64
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
65 The script contains a few configuration variables at the begining that
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
66 can and should be set:
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
67 PATH: The $PATH to be used within the script (recommended).
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
68 LOCK: The full path to the lock file to be used (/var/lock/mplayer-mirror-lock
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
69 or something similar, recommended).
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
70 MIRROR_ROOT: The root of the mirror. This is the directory where all files
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
71 are downloaded to (required).
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
72 MAILADR: The mail address where reports should be sent to (required).
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
73 TMPDIR: The directory where temporary files should be created.
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
74 If you set this explicitly, you have to uncomment the export below
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
75 (defaults to /tmp if not set).
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
76
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
77 Install this script and set the variables according to your setup. Then run
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
78 it once to get the first checkout of the mirror. This will require (at the
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
79 time of this writing - 2006-06) about 500MB of disk space.
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
80 You should get two directories in your $MIRROR_ROOT: homepage and MPlayer.
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
81 The former containing the HTML pages for the mirror and the latter the
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
82 downloadable files.
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
83
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
84 If this worked out OK, you should set up a cron job that periodically updates
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
85 the files. If you run an official mirror you should run the script every
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
86 6h to 12h (6h recommended). If you do not run an official mirror, you should
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
87 not run the script more often than once a day. Please use an "odd" time
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
88 to run the script when it is unlikely that any other cron job is running.
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
89 Bad times are e.g. full hours, or minutes that are divisible by 5.
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
90 An example crontab line would look like this:
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
91 ---
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
92 17 1,8,13,19 * * * /path/to/update_mplayer_rsync
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
93 ---
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
94 (please change the minute and hours to something random)
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
95
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
96 You can change the rest of the script as you see fit, although it is not
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
97 recommended. Please DO NOT CHANGE the options of the rsync commands.
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
98 Especially DO NOT REMOVE the -t and -W options. These prevent calculating
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
99 checksums on the server side which are very expensive.
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
100
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
101
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
102 Setting up an SSH account for update triggers
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
103 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
104
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
105 Official mirrors should provide an ssh-based trigger to run the update script
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
106 on request. This makes it possible to distribute releases and other important
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
107 files immediately to all mirrors.
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
108
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
109 The setup does not need a special user other than the one as which the update
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
110 script is run and does not allow running any other command.
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
111
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
112 First you need to create an ssh key pair by running:
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
113 ---
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
114 ssh-keygen -t dsa -C MPHQ_rsync_trigger -f www#_sshkey
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
115 ---
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
116 (replace the '#' by your mirror number)
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
117
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
118 You should send the private key to us by mail and specify the host and
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
119 user to be used. Please use a private mail of one of the admins and
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
120 DO NOT send the private key to the mirror mailing list.
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
121
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
122 The public key should be placed in the ~/.ssh/authorized_keys file of the
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
123 user running the updates. To restrict the ssh key to only one command place
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
124 the following directives at the begining of the line with the key:
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
125 from="*.mplayerhq.hu",command="<path_to_update_mplayer_rsync>"
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
126 e.g.:
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
127 ---
18725
5db2de837b06 misc corrections
diego
parents: 18674
diff changeset
128 from="*.mplayerhq.hu",command="/path/to/update_mplayer_rsync" ssh-dss AAAA
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
129 B3NzaC1kc3MAAAEBAI20yhE3/bRjzojUhhMz4DHnGhcJUiPWOfoP9CygnFOYOxJTFlxgqM3iJiHWRxgK
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
130 FJ/Uw40eV9K4Ww4fp2pe1guXJzKna8+6vBXaPPVEVxSyaxgtt4Xt3zpUuCnNljgArcEhwcNyOyH2RVln
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
131 yhyxsrKhuq5ZoNHD3caBGjZu3eOR2atPGS1NOdeN/hytIoh8T8DicPqPI29yWX9yAjnHv6wdPutwMLu6
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
132 [...]
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
133 n0Fs3CJY6/1UpgDGH7VPey0SdpJEDewltRLA+buP++2vJD/NUOeGzcRydo2NdZ1wiiaytXxkaec928JC
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
134 NABTeBh6NKAg4vnPvcRLKEBVdSrar/fARSbOmf3HOcsw3uZoAIE9jDGhnMKcnXfHjPZ2tZP9CHs6Wo4n
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
135 yDOxIfDZmJ7VJqMRc6//p5k81pkkGvawbPA63StI/Dkv/648l4XONuJc2z5gaUdjrTA8TsD/VJGiGcHl
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
136 mlGj3IWCBz7e4+XB3L64kFZwLCYN8kwDUAaHq4EtcMVOnQ== MPHQ_rsync_trigger
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
137 ---
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
138 (lines split for readability)
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
139
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
140
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
141 Setting up a webserver
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
142 ~~~~~~~~~~~~~~~~~~~~~~
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
143
18726
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
144 Set up Apache or whatever web server you prefer. We just have static pages,
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
145 so no fancy configuration is necessary. However, we need a few aliases so that
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
146 links on our pages work correctly. /MPlayer and /DOCS should redirect to the
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
147 directory with the downloadable files and /homepage should redirect to the
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
148 directory with the HTML pages.
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
149
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
150 Here is an example stanza to paste into your Apache configuration:
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
151
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
152 <VirtualHost www#.mplayerhq.hu>
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
153 DocumentRoot /path/to/htdocs
19268
01c395bab564 Add Indexes to Options as suggested by Jaeho Shin.
diego
parents: 18726
diff changeset
154 Options FollowSymLinks Indexes
18726
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
155 Alias /homepage /path/to/htdocs
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
156 Alias /MPlayer /path/to/MPlayer
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
157 Alias /DOCS /path/to/MPlayer/DOCS
20458
038e29652be8 Add a note about charset configuration to the Apache section.
diego
parents: 19268
diff changeset
158 AddDefaultCharset off
18726
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
159 </VirtualHost>
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
160
22887
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
161 <VirtualHost www.mplayerhq.hu>
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
162 DocumentRoot /path/to/htdocs
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
163 Options FollowSymLinks Indexes
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
164 Alias /homepage /path/to/htdocs
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
165 Alias /MPlayer /path/to/MPlayer
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
166 Alias /DOCS /path/to/MPlayer/DOCS
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
167 AddDefaultCharset off
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
168 </VirtualHost>
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
169
20458
038e29652be8 Add a note about charset configuration to the Apache section.
diego
parents: 19268
diff changeset
170 The AddDefaultCharset directive is necessary because newer versions of Apache
038e29652be8 Add a note about charset configuration to the Apache section.
diego
parents: 19268
diff changeset
171 appear to default to defining a standard charset. This breaks our documentation
038e29652be8 Add a note about charset configuration to the Apache section.
diego
parents: 19268
diff changeset
172 translations, which are written in different encodings.
038e29652be8 Add a note about charset configuration to the Apache section.
diego
parents: 19268
diff changeset
173
22887
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
174 The second VirtualHost is necessary for the DNS round-robin address.
dc3ff1498f69 Mention DNS round-robin system in the mirroring HOWTO.
diego
parents: 22774
diff changeset
175
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
176
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
177 Setting up an FTP server
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
178 ~~~~~~~~~~~~~~~~~~~~~~~~
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
179
18726
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
180 Any FTP server will do. We use vsftpd, it's fast and secure. You should have
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
181 the same directory layout as we do on our server, so there should be a
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
182 subdirectory named 'MPlayer' (notice the capitals) that contains the
7262fa28d79f Setting up a web server and FTP server.
diego
parents: 18725
diff changeset
183 downloadable files.
18674
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
184
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
185
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
186 Mailinglist
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
187 ~~~~~~~~~~~
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
188
abaac3427f7c Preliminary version of mirror howto
attila
parents:
diff changeset
189 TO BE DONE