It looks like lookups for ids on remote servers are not getting cached. For our rsync of logs and such we don't need to map those for our delivery. Signed-off-by: Stephen Smoogen <smooge@smoogespace.com>
14 lines
387 B
Text
14 lines
387 B
Text
# default: off
|
|
# description: The rsync server is a good addition to an ftp server, as it \
|
|
# allows crc checksumming etc.
|
|
service rsync
|
|
{
|
|
disable = no
|
|
socket_type = stream
|
|
wait = no
|
|
user = root
|
|
server = /usr/bin/rsync
|
|
server_args = --daemon --numeric-ids
|
|
log_on_failure += USERID
|
|
}
|
|
|