Commit d99b4ccf authored by Wayne Davison's avatar Wayne Davison

Another improvement in the "use chroot" section.

parent 58811a0a
...@@ -142,12 +142,22 @@ path, and leading slashes are removed from absolute paths. The default for ...@@ -142,12 +142,22 @@ path, and leading slashes are removed from absolute paths. The default for
"use chroot" is true. "use chroot" is true.
In order to preserve usernames and groupnames, rsync needs to be able to In order to preserve usernames and groupnames, rsync needs to be able to
lookup the IDs using getpuid() and getpgid(). This means that the chroot use the standard library functions for looking up names and IDs (i.e.
area will need to have copies of your user/group information (edited, if getpwuid(), getgrgid(), getpwname(), and getgrnam()). This means a
desired) inside the chroot tree for rsync to use (the traditional files process in the chroot namespace will need to have access to the resources
are /etc/passwd and /etc/group). If the needed files are not available, used by these library functions (traditionally /etc/passwd and
rsync will only be able to copy the IDs, just as if the --numeric-ids /etc/group). If these resources are not available, rsync will only be
option had been specified. able to copy the IDs, just as if the --numeric-ids option had been
specified.
Note that you are free to setup user/group information in the chroot area
differently from your normal system. For example, you could abbreviate
the list of users and groups. Also, you can protect this information
from being downloaded by adding an exclude rule to the rsync.conf file
(e.g. "exclude = /etc/"). To protect it from being changed by an upload
(if the module is not read only), be sure to set the permissions (or
owner) on the files and/or parent directories so that they cannot be
written by the daemon.
dit(bf(max connections)) The "max connections" option allows you to dit(bf(max connections)) The "max connections" option allows you to
specify the maximum number of simultaneous connections you will allow. specify the maximum number of simultaneous connections you will allow.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment