Adding the --fake-super option.
[rsync/rsync.git] / rsyncd.conf.yo
... / ...
CommitLineData
1mailto(rsync-bugs@samba.org)
2manpage(rsyncd.conf)(5)(6 Nov 2006)()()
3manpagename(rsyncd.conf)(configuration file for rsync in daemon mode)
4manpagesynopsis()
5
6rsyncd.conf
7
8manpagedescription()
9
10The rsyncd.conf file is the runtime configuration file for rsync when
11run as an rsync daemon.
12
13The rsyncd.conf file controls authentication, access, logging and
14available modules.
15
16manpagesection(FILE FORMAT)
17
18The file consists of modules and parameters. A module begins with the
19name of the module in square brackets and continues until the next
20module begins. Modules contain parameters of the form "name = value".
21
22The file is line-based -- that is, each newline-terminated line represents
23either a comment, a module name or a parameter.
24
25Only the first equals sign in a parameter is significant. Whitespace before
26or after the first equals sign is discarded. Leading, trailing and internal
27whitespace in module and parameter names is irrelevant. Leading and
28trailing whitespace in a parameter value is discarded. Internal whitespace
29within a parameter value is retained verbatim.
30
31Any line beginning with a hash (#) is ignored, as are lines containing
32only whitespace.
33
34Any line ending in a \ is "continued" on the next line in the
35customary UNIX fashion.
36
37The values following the equals sign in parameters are all either a string
38(no quotes needed) or a boolean, which may be given as yes/no, 0/1 or
39true/false. Case is not significant in boolean values, but is preserved
40in string values.
41
42manpagesection(LAUNCHING THE RSYNC DAEMON)
43
44The rsync daemon is launched by specifying the bf(--daemon) option to
45rsync.
46
47The daemon must run with root privileges if you wish to use chroot, to
48bind to a port numbered under 1024 (as is the default 873), or to set
49file ownership. Otherwise, it must just have permission to read and
50write the appropriate data, log, and lock files.
51
52You can launch it either via inetd, as a stand-alone daemon, or from
53an rsync client via a remote shell. If run as a stand-alone daemon then
54just run the command "bf(rsync --daemon)" from a suitable startup script.
55
56When run via inetd you should add a line like this to /etc/services:
57
58verb( rsync 873/tcp)
59
60and a single line something like this to /etc/inetd.conf:
61
62verb( rsync stream tcp nowait root /usr/bin/rsync rsyncd --daemon)
63
64Replace "/usr/bin/rsync" with the path to where you have rsync installed on
65your system. You will then need to send inetd a HUP signal to tell it to
66reread its config file.
67
68Note that you should bf(not) send the rsync daemon a HUP signal to force
69it to reread the tt(rsyncd.conf) file. The file is re-read on each client
70connection.
71
72manpagesection(GLOBAL OPTIONS)
73
74The first parameters in the file (before a [module] header) are the
75global parameters.
76
77You may also include any module parameters in the global part of the
78config file in which case the supplied value will override the
79default for that parameter.
80
81startdit()
82dit(bf(motd file)) The "motd file" option allows you to specify a
83"message of the day" to display to clients on each connect. This
84usually contains site information and any legal notices. The default
85is no motd file.
86
87dit(bf(pid file)) The "pid file" option tells the rsync daemon to write
88its process ID to that file.
89
90dit(bf(port)) You can override the default port the daemon will listen on
91by specifying this value (defaults to 873). This is ignored if the daemon
92is being run by inetd, and is superseded by the bf(--port) command-line option.
93
94dit(bf(address)) You can override the default IP address the daemon
95will listen on by specifying this value. This is ignored if the daemon is
96being run by inetd, and is superseded by the bf(--address) command-line option.
97
98dit(bf(socket options)) This option can provide endless fun for people
99who like to tune their systems to the utmost degree. You can set all
100sorts of socket options which may make transfers faster (or
101slower!). Read the man page for the code(setsockopt()) system call for
102details on some of the options you may be able to set. By default no
103special socket options are set. These settings are superseded by the
104bf(--sockopts) command-line option.
105
106enddit()
107
108
109manpagesection(MODULE OPTIONS)
110
111After the global options you should define a number of modules, each
112module exports a directory tree as a symbolic name. Modules are
113exported by specifying a module name in square brackets [module]
114followed by the options for that module.
115
116startdit()
117
118dit(bf(comment)) The "comment" option specifies a description string
119that is displayed next to the module name when clients obtain a list
120of available modules. The default is no comment.
121
122dit(bf(path)) The "path" option specifies the directory in the daemon's
123filesystem to make available in this module. You must specify this option
124for each module in tt(rsyncd.conf).
125
126dit(bf(use chroot)) If "use chroot" is true, the rsync daemon will chroot
127to the "path" before starting the file transfer with the client. This has
128the advantage of extra protection against possible implementation security
129holes, but it has the disadvantages of requiring super-user privileges,
130of not being able to follow symbolic links that are either absolute or outside
131of the new root path, and of complicating the preservation of usernames and groups
132(see below). When "use chroot" is false, for security reasons,
133symlinks may only be relative paths pointing to other files within the root
134path, and leading slashes are removed from most absolute paths (options
135such as bf(--backup-dir), bf(--compare-dest), etc. interpret an absolute path as
136rooted in the module's "path" dir, just as if chroot was specified).
137The default for "use chroot" is true.
138
139In order to preserve usernames and groupnames, rsync needs to be able to
140use the standard library functions for looking up names and IDs (i.e.
141code(getpwuid()), code(getgrgid()), code(getpwname()), and code(getgrnam())). This means a
142process in the chroot namespace will need to have access to the resources
143used by these library functions (traditionally /etc/passwd and
144/etc/group). If these resources are not available, rsync will only be
145able to copy the IDs, just as if the bf(--numeric-ids) option had been
146specified.
147
148Note that you are free to setup user/group information in the chroot area
149differently from your normal system. For example, you could abbreviate
150the list of users and groups. Also, you can protect this information from
151being downloaded/uploaded by adding an exclude rule to the rsyncd.conf file
152(e.g. "bf(exclude = /etc/**)"). Note that having the exclusion affect uploads
153is a relatively new feature in rsync, so make sure your daemon is
154at least 2.6.3 to effect this. Also note that it is safest to exclude a
155directory and all its contents combining the rule "/some/dir/" with the
156rule "/some/dir/**" just to be sure that rsync will not allow deeper
157access to some of the excluded files inside the directory (rsync tries to
158do this automatically, but you might as well specify both to be extra
159sure).
160
161dit(bf(max connections)) The "max connections" option allows you to
162specify the maximum number of simultaneous connections you will allow.
163Any clients connecting when the maximum has been reached will receive a
164message telling them to try later. The default is 0 which means no limit.
165See also the "lock file" option.
166
167dit(bf(log file)) When the "log file" option is set to a non-empty
168string, the rsync daemon will log messages to the indicated file rather
169than using syslog. This is particularly useful on systems (such as AIX)
170where code(syslog()) doesn't work for chrooted programs. The file is
171opened before code(chroot()) is called, allowing it to be placed outside
172the transfer. If this value is set on a per-module basis instead of
173globally, the global log will still contain any authorization failures
174or config-file error messages.
175
176If the daemon fails to open to specified file, it will fall back to
177using syslog and output an error about the failure. (Note that the
178failure to open the specified log file used to be a fatal error.)
179
180dit(bf(syslog facility)) The "syslog facility" option allows you to
181specify the syslog facility name to use when logging messages from the
182rsync daemon. You may use any standard syslog facility name which is
183defined on your system. Common names are auth, authpriv, cron, daemon,
184ftp, kern, lpr, mail, news, security, syslog, user, uucp, local0,
185local1, local2, local3, local4, local5, local6 and local7. The default
186is daemon. This setting has no effect if the "log file" setting is a
187non-empty string (either set in the per-modules settings, or inherited
188from the global settings).
189
190dit(bf(max verbosity)) The "max verbosity" option allows you to control
191the maximum amount of verbose information that you'll allow the daemon to
192generate (since the information goes into the log file). The default is 1,
193which allows the client to request one level of verbosity.
194
195dit(bf(lock file)) The "lock file" option specifies the file to use to
196support the "max connections" option. The rsync daemon uses record
197locking on this file to ensure that the max connections limit is not
198exceeded for the modules sharing the lock file.
199The default is tt(/var/run/rsyncd.lock).
200
201dit(bf(read only)) The "read only" option determines whether clients
202will be able to upload files or not. If "read only" is true then any
203attempted uploads will fail. If "read only" is false then uploads will
204be possible if file permissions on the daemon side allow them. The default
205is for all modules to be read only.
206
207dit(bf(write only)) The "write only" option determines whether clients
208will be able to download files or not. If "write only" is true then any
209attempted downloads will fail. If "write only" is false then downloads
210will be possible if file permissions on the daemon side allow them. The
211default is for this option to be disabled.
212
213dit(bf(list)) The "list" option determines if this module should be
214listed when the client asks for a listing of available modules. By
215setting this to false you can create hidden modules. The default is
216for modules to be listable.
217
218dit(bf(uid)) The "uid" option specifies the user name or user ID that
219file transfers to and from that module should take place as when the daemon
220was run as root. In combination with the "gid" option this determines what
221file permissions are available. The default is uid -2, which is normally
222the user "nobody".
223
224dit(bf(gid)) The "gid" option specifies the group name or group ID that
225file transfers to and from that module should take place as when the daemon
226was run as root. This complements the "uid" option. The default is gid -2,
227which is normally the group "nobody".
228
229dit(bf(fake super)) Setting "fake super = yes" for a module causes the
230daemon side to behave as if the bf(--fake-user) command-line option had
231been specified. This allows the full attributes of a file to be stored
232without having to have the daemon actually running as root.
233
234dit(bf(filter)) The "filter" option allows you to specify a space-separated
235list of filter rules that the daemon will not allow to be read or written.
236This is only superficially equivalent to the client specifying these
237patterns with the bf(--filter) option. Only one "filter" option may be
238specified, but it may contain as many rules as you like, including
239merge-file rules. Note that per-directory merge-file rules do not provide
240as much protection as global rules, but they can be used to make bf(--delete)
241work better when a client downloads the daemon's files (if the per-dir
242merge files are included in the transfer).
243
244dit(bf(exclude)) The "exclude" option allows you to specify a
245space-separated list of patterns that the daemon will not allow to be read
246or written. This is only superficially equivalent to the client
247specifying these patterns with the bf(--exclude) option. Only one "exclude"
248option may be specified, but you can use "-" and "+" before patterns to
249specify exclude/include.
250
251Because this exclude list is not passed to the client it only applies on
252the daemon: that is, it excludes files received by a client when receiving
253from a daemon and files deleted on a daemon when sending to a daemon, but
254it doesn't exclude files from being deleted on a client when receiving
255from a daemon.
256
257dit(bf(exclude from)) The "exclude from" option specifies a filename
258on the daemon that contains exclude patterns, one per line.
259This is only superficially equivalent
260to the client specifying the bf(--exclude-from) option with an equivalent file.
261See the "exclude" option above.
262
263dit(bf(include)) The "include" option allows you to specify a
264space-separated list of patterns which rsync should not exclude. This is
265only superficially equivalent to the client specifying these patterns with
266the bf(--include) option because it applies only on the daemon. This is
267useful as it allows you to build up quite complex exclude/include rules.
268Only one "include" option may be specified, but you can use "+" and "-"
269before patterns to switch include/exclude. See the "exclude" option
270above.
271
272dit(bf(include from)) The "include from" option specifies a filename
273on the daemon that contains include patterns, one per line. This is
274only superficially equivalent to the client specifying the
275bf(--include-from) option with a equivalent file.
276See the "exclude" option above.
277
278dit(bf(incoming chmod)) This option allows you to specify a set of
279comma-separated chmod strings that will affect the permissions of all
280incoming files (files that are being received by the daemon). These
281changes happen after all other permission calculations, and this will
282even override destination-default and/or existing permissions when the
283client does not specify bf(--perms).
284See the description of the bf(--chmod) rsync option and the bf(chmod)(1)
285manpage for information on the format of this string.
286
287dit(bf(outgoing chmod)) This option allows you to specify a set of
288comma-separated chmod strings that will affect the permissions of all
289outgoing files (files that are being sent out from the daemon). These
290changes happen first, making the sent permissions appear to be different
291than those stored in the filesystem itself. For instance, you could
292disable group write permissions on the server while having it appear to
293be on to the clients.
294See the description of the bf(--chmod) rsync option and the bf(chmod)(1)
295manpage for information on the format of this string.
296
297dit(bf(auth users)) The "auth users" option specifies a comma and
298space-separated list of usernames that will be allowed to connect to
299this module. The usernames do not need to exist on the local
300system. The usernames may also contain shell wildcard characters. If
301"auth users" is set then the client will be challenged to supply a
302username and password to connect to the module. A challenge response
303authentication protocol is used for this exchange. The plain text
304usernames and passwords are stored in the file specified by the
305"secrets file" option. The default is for all users to be able to
306connect without a password (this is called "anonymous rsync").
307
308See also the "CONNECTING TO AN RSYNC DAEMON OVER A REMOTE SHELL
309PROGRAM" section in bf(rsync)(1) for information on how handle an
310rsyncd.conf-level username that differs from the remote-shell-level
311username when using a remote shell to connect to an rsync daemon.
312
313dit(bf(secrets file)) The "secrets file" option specifies the name of
314a file that contains the username:password pairs used for
315authenticating this module. This file is only consulted if the "auth
316users" option is specified. The file is line based and contains
317username:password pairs separated by a single colon. Any line starting
318with a hash (#) is considered a comment and is skipped. The passwords
319can contain any characters but be warned that many operating systems
320limit the length of passwords that can be typed at the client end, so
321you may find that passwords longer than 8 characters don't work.
322
323There is no default for the "secrets file" option, you must choose a name
324(such as tt(/etc/rsyncd.secrets)). The file must normally not be readable
325by "other"; see "strict modes".
326
327dit(bf(strict modes)) The "strict modes" option determines whether or not
328the permissions on the secrets file will be checked. If "strict modes" is
329true, then the secrets file must not be readable by any user ID other
330than the one that the rsync daemon is running under. If "strict modes" is
331false, the check is not performed. The default is true. This option
332was added to accommodate rsync running on the Windows operating system.
333
334dit(bf(hosts allow)) The "hosts allow" option allows you to specify a
335list of patterns that are matched against a connecting clients
336hostname and IP address. If none of the patterns match then the
337connection is rejected.
338
339Each pattern can be in one of five forms:
340
341quote(itemization(
342 it() a dotted decimal IPv4 address of the form a.b.c.d, or an IPv6 address
343 of the form a:b:c::d:e:f. In this case the incoming machine's IP address
344 must match exactly.
345 it() an address/mask in the form ipaddr/n where ipaddr is the IP address
346 and n is the number of one bits in the netmask. All IP addresses which
347 match the masked IP address will be allowed in.
348 it() an address/mask in the form ipaddr/maskaddr where ipaddr is the
349 IP address and maskaddr is the netmask in dotted decimal notation for IPv4,
350 or similar for IPv6, e.g. ffff:ffff:ffff:ffff:: instead of /64. All IP
351 addresses which match the masked IP address will be allowed in.
352 it() a hostname. The hostname as determined by a reverse lookup will
353 be matched (case insensitive) against the pattern. Only an exact
354 match is allowed in.
355 it() a hostname pattern using wildcards. These are matched using the
356 same rules as normal unix filename matching. If the pattern matches
357 then the client is allowed in.
358))
359
360Note IPv6 link-local addresses can have a scope in the address specification:
361
362quote(
363tt( fe80::1%link1)nl()
364tt( fe80::%link1/64)nl()
365tt( fe80::%link1/ffff:ffff:ffff:ffff::)nl()
366)
367
368You can also combine "hosts allow" with a separate "hosts deny"
369option. If both options are specified then the "hosts allow" option s
370checked first and a match results in the client being able to
371connect. The "hosts deny" option is then checked and a match means
372that the host is rejected. If the host does not match either the
373"hosts allow" or the "hosts deny" patterns then it is allowed to
374connect.
375
376The default is no "hosts allow" option, which means all hosts can connect.
377
378dit(bf(hosts deny)) The "hosts deny" option allows you to specify a
379list of patterns that are matched against a connecting clients
380hostname and IP address. If the pattern matches then the connection is
381rejected. See the "hosts allow" option for more information.
382
383The default is no "hosts deny" option, which means all hosts can connect.
384
385dit(bf(ignore errors)) The "ignore errors" option tells rsyncd to
386ignore I/O errors on the daemon when deciding whether to run the delete
387phase of the transfer. Normally rsync skips the bf(--delete) step if any
388I/O errors have occurred in order to prevent disastrous deletion due
389to a temporary resource shortage or other I/O error. In some cases this
390test is counter productive so you can use this option to turn off this
391behavior.
392
393dit(bf(ignore nonreadable)) This tells the rsync daemon to completely
394ignore files that are not readable by the user. This is useful for
395public archives that may have some non-readable files among the
396directories, and the sysadmin doesn't want those files to be seen at all.
397
398dit(bf(transfer logging)) The "transfer logging" option enables per-file
399logging of downloads and uploads in a format somewhat similar to that
400used by ftp daemons. The daemon always logs the transfer at the end, so
401if a transfer is aborted, no mention will be made in the log file.
402
403If you want to customize the log lines, see the "log format" option.
404
405dit(bf(log format)) The "log format" option allows you to specify the
406format used for logging file transfers when transfer logging is enabled.
407The format is a text string containing embedded single-character escape
408sequences prefixed with a percent (%) character. An optional numeric
409field width may also be specified between the percent and the escape
410letter (e.g. "bf(%-50n %8l %07p)").
411
412The default log format is "%o %h [%a] %m (%u) %f %l", and a "%t [%p] "
413is always prefixed when using the "log file" option.
414(A perl script that will summarize this default log format is included
415in the rsync source code distribution in the "support" subdirectory:
416rsyncstats.)
417
418The single-character escapes that are understood are as follows:
419
420quote(itemization(
421 it() %a the remote IP address
422 it() %b the number of bytes actually transferred
423 it() %B the permission bits of the file (e.g. rwxrwxrwt)
424 it() %c the checksum bytes received for this file (only when sending)
425 it() %f the filename (long form on sender; no trailing "/")
426 it() %G the gid of the file (decimal) or "DEFAULT"
427 it() %h the remote host name
428 it() %i an itemized list of what is being updated
429 it() %l the length of the file in bytes
430 it() %L the string " -> SYMLINK", " => HARDLINK", or "" (where bf(SYMLINK) or bf(HARDLINK) is a filename)
431 it() %m the module name
432 it() %M the last-modified time of the file
433 it() %n the filename (short form; trailing "/" on dir)
434 it() %o the operation, which is "send", "recv", or "del." (the latter includes the trailing period)
435 it() %p the process ID of this rsync session
436 it() %P the module path
437 it() %t the current date time
438 it() %u the authenticated username or an empty string
439 it() %U the uid of the file (decimal)
440))
441
442For a list of what the characters mean that are output by "%i", see the
443bf(--itemize-changes) option in the rsync manpage.
444
445Note that some of the logged output changes when talking with older
446rsync versions. For instance, deleted files were only output as verbose
447messages prior to rsync 2.6.4.
448
449dit(bf(timeout)) The "timeout" option allows you to override the
450clients choice for I/O timeout for this module. Using this option you
451can ensure that rsync won't wait on a dead client forever. The timeout
452is specified in seconds. A value of zero means no timeout and is the
453default. A good choice for anonymous rsync daemons may be 600 (giving
454a 10 minute timeout).
455
456dit(bf(refuse options)) The "refuse options" option allows you to
457specify a space-separated list of rsync command line options that will
458be refused by your rsync daemon.
459You may specify the full option name, its one-letter abbreviation, or a
460wild-card string that matches multiple options.
461For example, this would refuse bf(--checksum) (bf(-c)) and all the various
462delete options:
463
464quote(tt( refuse options = c delete))
465
466The reason the above refuses all delete options is that the options imply
467bf(--delete), and implied options are refused just like explicit options.
468As an additional safety feature, the refusal of "delete" also refuses
469bf(remove-sent-files) when the daemon is the sender; if you want the latter
470without the former, instead refuse "delete-*" -- that refuses all the
471delete modes without affecting bf(--remove-sent-files).
472
473When an option is refused, the daemon prints an error message and exits.
474To prevent all compression when serving files,
475you can use "dont compress = *" (see below)
476instead of "refuse options = compress" to avoid returning an error to a
477client that requests compression.
478
479dit(bf(dont compress)) The "dont compress" option allows you to select
480filenames based on wildcard patterns that should not be compressed
481when pulling files from the daemon (no analogous option exists to
482govern the pushing of files to a daemon).
483Compression is expensive in terms of CPU usage, so it
484is usually good to not try to compress files that won't compress well,
485such as already compressed files.
486
487The "dont compress" option takes a space-separated list of
488case-insensitive wildcard patterns. Any source filename matching one
489of the patterns will not be compressed during transfer.
490
491The default setting is tt(*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz)
492
493dit(bf(pre-xfer exec), bf(post-xfer exec)) You may specify a command to be run
494before and/or after the transfer. If the bf(pre-xfer exec) command fails, the
495transfer is aborted before it begins.
496
497The following environment variables will be set, though some are
498specific to the pre-xfer or the post-xfer environment:
499
500quote(itemization(
501 it() bf(RSYNC_MODULE_NAME): The name of the module being accessed.
502 it() bf(RSYNC_MODULE_PATH): The path configured for the module.
503 it() bf(RSYNC_HOST_ADDR): The accessing host's IP address.
504 it() bf(RSYNC_HOST_NAME): The accessing host's name.
505 it() bf(RSYNC_USER_NAME): The accessing user's name (empty if no user).
506 it() bf(RSYNC_PID): A unique number for this transfer.
507 it() bf(RSYNC_REQUEST): (pre-xfer only) The module/path info specified
508 by the user (note that the user can specify multiple source files,
509 so the request can be something like "mod/path1 mod/path2", etc.).
510 it() bf(RSYNC_ARG#): (pre-xfer only) The pre-request arguments are set
511 in these numbered values. RSYNC_ARG0 is always "rsyncd", and the last
512 value contains a single period.
513 it() bf(RSYNC_EXIT_STATUS): (post-xfer only) the server side's exit value.
514 This will be 0 for a successful run, a positive value for an error that the
515 server generated, or a -1 if rsync failed to exit properly. Note that an
516 error that occurs on the client side does not currently get sent to the
517 server side, so this is not the final exit status for the whole transfer.
518 it() bf(RSYNC_RAW_STATUS): (post-xfer only) the raw exit value from code(waitpid()).
519))
520
521Even though the commands can be associated with a particular module, they
522are run using the permissions of the user that started the daemon (not the
523module's uid/gid setting) without any chroot restrictions.
524
525enddit()
526
527manpagesection(AUTHENTICATION STRENGTH)
528
529The authentication protocol used in rsync is a 128 bit MD4 based
530challenge response system. This is fairly weak protection, though (with
531at least one brute-force hash-finding algorithm publicly available), so
532if you want really top-quality security, then I recommend that you run
533rsync over ssh. (Yes, a future version of rsync will switch over to a
534stronger hashing method.)
535
536Also note that the rsync daemon protocol does not currently provide any
537encryption of the data that is transferred over the connection. Only
538authentication is provided. Use ssh as the transport if you want
539encryption.
540
541Future versions of rsync may support SSL for better authentication and
542encryption, but that is still being investigated.
543
544manpagesection(EXAMPLES)
545
546A simple rsyncd.conf file that allow anonymous rsync to a ftp area at
547tt(/home/ftp) would be:
548
549verb(
550[ftp]
551 path = /home/ftp
552 comment = ftp export area
553)
554
555A more sophisticated example would be:
556
557verb(
558uid = nobody
559gid = nobody
560use chroot = no
561max connections = 4
562syslog facility = local5
563pid file = /var/run/rsyncd.pid
564
565[ftp]
566 path = /var/ftp/pub
567 comment = whole ftp area (approx 6.1 GB)
568
569[sambaftp]
570 path = /var/ftp/pub/samba
571 comment = Samba ftp area (approx 300 MB)
572
573[rsyncftp]
574 path = /var/ftp/pub/rsync
575 comment = rsync ftp area (approx 6 MB)
576
577[sambawww]
578 path = /public_html/samba
579 comment = Samba WWW pages (approx 240 MB)
580
581[cvs]
582 path = /data/cvs
583 comment = CVS repository (requires authentication)
584 auth users = tridge, susan
585 secrets file = /etc/rsyncd.secrets
586)
587
588The /etc/rsyncd.secrets file would look something like this:
589
590quote(
591tt(tridge:mypass)nl()
592tt(susan:herpass)nl()
593)
594
595manpagefiles()
596
597/etc/rsyncd.conf or rsyncd.conf
598
599manpageseealso()
600
601bf(rsync)(1)
602
603manpagediagnostics()
604
605manpagebugs()
606
607Please report bugs! The rsync bug tracking system is online at
608url(http://rsync.samba.org/)(http://rsync.samba.org/)
609
610manpagesection(VERSION)
611
612This man page is current for version 2.6.9 of rsync.
613
614manpagesection(CREDITS)
615
616rsync is distributed under the GNU public license. See the file
617COPYING for details.
618
619The primary ftp site for rsync is
620url(ftp://rsync.samba.org/pub/rsync)(ftp://rsync.samba.org/pub/rsync).
621
622A WEB site is available at
623url(http://rsync.samba.org/)(http://rsync.samba.org/)
624
625We would be delighted to hear from you if you like this program.
626
627This program uses the zlib compression library written by Jean-loup
628Gailly and Mark Adler.
629
630manpagesection(THANKS)
631
632Thanks to Warren Stanley for his original idea and patch for the rsync
633daemon. Thanks to Karsten Thygesen for his many suggestions and
634documentation!
635
636manpageauthor()
637
638rsync was written by Andrew Tridgell and Paul Mackerras.
639Many people have later contributed to it.
640
641Mailing lists for support and development are available at
642url(http://lists.samba.org)(lists.samba.org)