Re: config

2021-06-25 Thread Joe via rsync
Part of the genius of Linux is the concept that each tool should do one thing well and with pipes it is extremely easy to chain these tools together in combinations unique to the current requirements of any task. I can't speak for the rsync developers, but I don't believe they would be open to

Re: config

2021-06-25 Thread Gerhard Obermayr via rsync
Am 25.06.2021 um 17:34 schrieb Knight, Dave: The rsync stdout typically lists directories "considered" with a "/" at the end and lists those files that actually get copied/sync'd by name with no "/" at the end.  If I understand your "problem" correctly, you want to see only the copied files.

Re: config

2021-06-25 Thread Joe via rsync
Once you have the closest superset of what you want to see in your rsync output, run the result through a filter to clean it up before sending it. sed and awk are great for this, but any language/script you are familiar with will do. Having regexes for the pattern matching will make the job

Re: config

2021-06-25 Thread Kevin Korb via rsync
Rsync by default displays nothing. There are more than one options that tell it to display the files it is touching. There are other (and duplicate) options that tell it to show everything. You didn't say what options you are using so we have no idea. Except that you aren't using

config

2021-06-25 Thread Gerhard Obermayr via rsync
Hello everyone, Briefly to my problem - or wish: By lucky coincidence I came into possession of an HP Proliant. My junior installed OpenMediaVault for me. I've been using it as a daily backup for my TeraStation ever since. Rsync is set up for this. Every day I get two emails from this backup,

Re: [Bug 10557] .ssh/config settings are incompletely applied with -e or --rsh

2014-04-18 Thread Jonathan Aquilina
a Linux perspective. I have no idea what OSX uses as root's home dir. Simply put, under sudo you are running as root and root has a different home dir therefore a different ~/.ssh/config file. Also, note that permissions and usernames matter at both ends. -- Configure bugmail: https

[Bug 10557] New: .ssh/config settings are incompletely applied with -e or --rsh

2014-04-17 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10557 Summary: .ssh/config settings are incompletely applied with -e or --rsh Product: rsync Version: 3.1.1 Platform: All OS/Version: All Status: NEW Severity

[Bug 10557] .ssh/config settings are incompletely applied with -e or --rsh

2014-04-17 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10557 --- Comment #1 from Kevin Korb rs...@sanitarium.net 2014-04-17 18:35:45 UTC --- The key here is the sudo. ssh will always look to ~/.ssh/config but once you sudo your ~ is /root instead of /Users/kbroughton. Duplicate your ~/.ssh/config in ~root

[Bug 10557] .ssh/config settings are incompletely applied with -e or --rsh

2014-04-17 Thread samba-bugs
. There is not /root to try putting the .ssh/config there as you suggested. thanks -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. -- Please use reply-all for most replies to avoid omitting

[Bug 10557] .ssh/config settings are incompletely applied with -e or --rsh

2014-04-17 Thread samba-bugs
home dir therefore a different ~/.ssh/config file. Also, note that permissions and usernames matter at both ends. -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. -- Please use reply

DO NOT REPLY [Bug 7633] add support for include/includedir config file directives

2010-09-10 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=7633 way...@samba.org changed: What|Removed |Added CC||bdgr...@pitt.edu --- Comment #2

DO NOT REPLY [Bug 7633] add support for include/includedir config file directives

2010-08-21 Thread samba-bugs
||FIXED --- Comment #1 from way...@samba.org 2010-08-21 12:57 CST --- See the CONFIG DIRECTIVES section of the rsyncd.conf manpage in 3.1.0. At work we use include /etc/rsyncd.d inside a simple /etc/rsyncd.conf file so we can put whatever module-defining *.conf files we

DO NOT REPLY [Bug 7633] New: add support for include/includedir config file directives

2010-08-19 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=7633 Summary: add support for include/includedir config file directives Product: rsync Version: 3.1.0 Platform: Other OS/Version: All Status: NEW Severity

Re: How do you specify an alternate config file when using rsync with ssh?

2007-04-10 Thread rcorujo
Yes, that worked. Thank you very much, Matt. Rigoberto Matt McCutchen-3 wrote: On 4/9/07, rcorujo [EMAIL PROTECTED] wrote: It seems that the --config option is only used when rsync is run as a daemon. However, it you want to run something like rsync -e ssh --config=config_FILE

How do you specify an alternate config file when using rsync with ssh?

2007-04-09 Thread rcorujo
It seems that the --config option is only used when rsync is run as a daemon. However, it you want to run something like rsync -e ssh --config=config_FILE ... the --config option is ignored. When I run rsync with ssh, I want to specify a different config file that contains different modules

Re: How do you specify an alternate config file when using rsync with ssh?

2007-04-09 Thread Matt McCutchen
On 4/9/07, rcorujo [EMAIL PROTECTED] wrote: It seems that the --config option is only used when rsync is run as a daemon. However, it you want to run something like rsync -e ssh --config=config_FILE ... the --config option is ignored. When I run rsync with ssh, I want to specify a different

rsync --rsh not reading .ssh/config

2004-11-11 Thread Bill Moseley
I've setup up a single-use key on a remote host to run rsync in server mode. I've also setup .ssh/config locally with an IdentityFile to select the single-use ssh key. This works on my Debian sid machine: rsync --rsh=ssh remove_host :: But on another machine that command (and others tried

Re: rsync --rsh not reading .ssh/config

2004-11-11 Thread Paul Slootman
On Thu 11 Nov 2004, Bill Moseley wrote: Again, the problem seems that on this machine .ssh/config is not being read, but only when ssh is run via rsync. My guess is this is just a problem with running the older rsync. Ah, you mean .ssh/config is being read, but not when ssh is run via

Re: rsync --rsh not reading .ssh/config

2004-11-11 Thread Wayne Davison
config isn't being read... That used to be true, but rsync has supported daemon mode over ssh for quite a while now, so using both -e (--rsh) and :: is fine. On Thu 11 Nov 2004, Bill Moseley wrote: $ rsync -a --rsh=ssh -F $HOME/.ssh/config -i $HOME/.ssh/mysqldump remotehost:: unknown host

Re: rsync --rsh not reading .ssh/config

2004-11-11 Thread Bill Moseley
On Thu, Nov 11, 2004 at 04:47:32PM -0800, Wayne Davison wrote: $ rsync -a --rsh=ssh -F $HOME/.ssh/config -i $HOME/.ssh/mysqldump remotehost:: unknown host: remotehost It looks like this command didn't even connect to the remote host, so that would explain why the access times

Re: rsync --rsh not reading .ssh/config

2004-11-11 Thread Wayne Davison
On Thu, Nov 11, 2004 at 08:26:23PM -0800, Bill Moseley wrote: So why isn't is using ssh? Because you're using an archaic version of rsync that doesn't support the feature you're trying to use. Upgrade to 2.6.3. ..wayne.. -- To unsubscribe or change options:

Re: rsync --rsh not reading .ssh/config

2004-11-11 Thread Bill Moseley
On Thu, Nov 11, 2004 at 09:06:49PM -0800, Wayne Davison wrote: On Thu, Nov 11, 2004 at 08:26:23PM -0800, Bill Moseley wrote: So why isn't is using ssh? Because you're using an archaic version of rsync that doesn't support the feature you're trying to use. Upgrade to 2.6.3. Well, that's

Re: How to Config Start Backup Process in NW6 with RSync

2003-08-20 Thread jw schultz
On Wed, Aug 20, 2003 at 12:06:37PM -, MalleswaraRao Durga wrote: Dear Experts, I got Two Netware 6 Servers in the Same LAN. Server A is a main server (File Server). I'ld like to configure Server B as Backup server for Server A with RSync. I've follwed the documetnation at

Re: rsync2.5.6 can't find system config file

2003-03-09 Thread Chris Hare, CISSP, CISA
I am still stuck with this problem. Does anyone have any advice? - Original Message - From: Chris Hare [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, March 01, 2003 7:10 PM Subject: rsync2.5.6 can't find system config file I had rsync2.5.5 running fine ona RedHat Linux 8

Re: rsync2.5.6 can't find system config file

2003-03-09 Thread Brad Hards
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, 10 Mar 2003 16:51, Chris Hare, CISSP, CISA wrote: I am still stuck with this problem. Does anyone have any advice? Have you tried putting it in /etc/rsync/rsyncd.conf? Brad -BEGIN PGP SIGNATURE- Version: GnuPG v1.0.6 (GNU/Linux)

rsync2.5.6 can't find system config file

2003-03-01 Thread Chris Hare
I had rsync2.5.5 running fine ona RedHat Linux 8 system. I downloaded the rsync2.5.6 code and it compiled with no problems. However, operations which worked before are now failing. Here is my rsyncd.conf file uid = nobody gid = nobody # use chroot = no max connections = 4 syslog facility =

Re: rcopy.pl an Perl script for rsync (with XML config)

2002-09-07 Thread Sean O'Neill
At 03:07 PM 9/7/2002 -0400, Luis M wrote: And you can read an article I did explaining it's usage (Spanish only, use the Fish to translate -- http://world.altavista.com ) from this link: http://www.latinomixed.com/article.php3?story_id=232 For some reason, Fish doesn't translate the entire

Re: [PATCH] rsync on cygwin - textmode config files

2002-03-26 Thread Martin Pool
Thanks, this will be merged in 2.6. Please let me know if anything further is required. -- Martin -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-questions.html

Re: [PATCH] rsync on cygwin - textmode config files

2002-02-21 Thread Ville Herva
On Wed, Feb 20, 2002 at 11:17:24AM -0800, you [Martin Pool] wrote: OK, already fixed. --no-fork would be good to add in the future -- it can be handy for debugging. As said, I only added the --dont-fork==--no-detach mostly because I use it in my scripts. (The original --dont-fork did

Re: [PATCH] rsync on cygwin - textmode config files

2002-02-20 Thread Ville Herva
On Wed, Feb 20, 2002 at 08:27:07AM +0200, [Ville Herva] wrote: (2) Secondly, if I connect to rsync daemon from another machine and hit ctrl-c at the client end during transfer, the rsync daemon exists (not just the connection handler process, but every rsync). I guess this

Re: [PATCH] rsync on cygwin - textmode config files

2002-02-20 Thread Martin Pool
(1) --no-detach OK, already fixed. --no-fork would be good to add in the future -- it can be handy for debugging. (2) ctrl-c Fixed recently by Colin Walters. O_TEXT and O_BINARY Good. It might be cleaner to #ifdef on O_BINARY or something that will also work on MSVC++. +#ifdef

Re: Bug in rsyncd 2.5.0 while handling config file string values

2001-12-03 Thread tim . conway
Well, that's a bug, I'd reckon, but i want to point out that a config file with only one line is invalid. you need to have at least a module and its path defined. I wouldn't expect daemon mode to gracefully handle an invalid config, though simply declaring that the file is invalid

Bug in rsyncd 2.5.0 while handling config file string values

2001-12-02 Thread Heikki Vatiainen
shows where it crashes and what my minimal config file for demonstrating the bug was. The config file only had one line which was: uid = foobar /usr/local/src/rsync/rsync-2.5.0:gdb ./rsync GNU gdb 5.0.90-cvs (MI_OUT) (gdb) r --daemon --config=../rsyncd.conf Starting program: /usr/local/src/rsync

Re: Bug in rsyncd 2.5.0 while handling config file string values

2001-12-02 Thread Martin Pool
On 2 Dec 2001, Heikki Vatiainen [EMAIL PROTECTED] wrote: I compiled and tried rsync 2.5.0 but could not get the server running. loadparm.c:string_set() now calls free() which it did not do in 2.4.6 and this free() tries to free memory that was not allocated with malloc. Thankyou for the