Wednesday, November 28, 2007

Rsync config for Readynas backups

Ubuntu 7.04

rsyncd.conf

Use rsync rsync://172.16.1.31/ to list rsync 'shares'

steve@outside2:~$ more /etc/rsyncd.conf
max connections = 2
log file = /var/log/rsync.log
timeout = 10
use chroot = no
max connections = 5

[home]
comment = Test Share
# path = /home/steve/TestShare
path = /home
read only = no
list = yes
strict modes = false
uid = steve
gid = steve
auth users = steve
secrets file = /etc/rsyncd.secret


[nas-DocsSG]
comment = lacie NAS SG my docs
strict modes = false
path = /media/nas/StevesDocs
read only = no
list = yes
uid = nobody
max connections = 5
gid = nogroup
# auth users = steve
# secrets file = /etc/rsyncd.secret

[nas-DocsLG]
strict modes = false
path = /media/nas/LaurensDocs
read only = no
list = yes
uid = nobody
max connections = 5
gid = nogroup


[nas-media]
comment = lacie NAS media
strict modes = false
path = /media/nas/Media
read only = no
list = yes
strict modes = false
uid = steve
gid = steve
auth users = steve
secrets file = /etc/rsyncd.secret

0 Comments:

Post a Comment

<< Home