2014-03-17 15:55:26 +00:00
|
|
|
# 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
|
2021-03-31 13:51:13 -04:00
|
|
|
server_args = --daemon
|
2014-03-17 15:55:26 +00:00
|
|
|
log_on_failure += USERID
|
|
|
|
}
|
|
|
|
|