Re: map destination files files based on meta data

2013-09-30 Thread Joe
It would be possible (probably not too difficult) to write a (bash ...) script that examines the exif info in all your pictures and uses that to make a separate list of files for each destination to pass to rsync. If you also filter the files by some cutoff date (like since the last time the script

Re: multiple secrets file

2013-09-30 Thread Paul Slootman
On Mon 30 Sep 2013, thomas veymont wrote: > > ie. any modules declared in mymodules1/ will use users/passwords in > secret1.inc whereas mymodules2/ modules will use secret2.inc. > > is it the right way to implement this ? Well, the "secrets" parameter is listed under "MODULE PARAMETERS" in the r

map destination files files based on meta data

2013-09-30 Thread Cary Lewis
I am in the process of designing a photo synchronization application - basically I want to be able to copy all of the images captured throughout my home's infrastructure to a central repository. The problem that I foresee is that there may be collisions between filenames between the various compute

multiple secrets file

2013-09-30 Thread thomas veymont
hi all, using rsync 3.1, I need to use distinct secrets file according to what modules are being "authenticated". This seems to work : (...) secrets file = /etc/rsyncd/secrets1.inc &include = /etc/rsyncd/mymodules1/ secrets file = /etc/rsyncd/secrets2.inc &include = /etc/rsyncd/mymodules2/ (...)