mirror of
https://github.com/kennethreitz-archive/heroku-splinder.git
synced 2026-06-21 16:00:57 +00:00
14 lines
315 B
Plaintext
14 lines
315 B
Plaintext
# default: off
|
|
# description: The rsync server is a good addition to an ftp server, as it
|
|
# allows crc checksumming etc.
|
|
service rsync
|
|
{
|
|
disable = yes
|
|
socket_type = stream
|
|
wait = no
|
|
user = root
|
|
server = /usr/bin/rsync
|
|
server_args = --daemon
|
|
log_on_failure += USERID
|
|
}
|