ansible/roles/rsyncd/files/rsync.default
Stephen Smoogen b7f6ebae86 Add --numeric-ids to rsync xinetd
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>
2021-03-31 13:11:56 -04:00

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
}