Export to GitHub

parallel-ssh - issue #54

diff of prsync to take "--exclude" and "--exclude-from" switch


Posted on Aug 19, 2011 by Swift Horse

Request for enhancement. For those who need "--exclude" and "--exclude-from" options.

pssh - 2.2.2 - active

diff /opt/python-2.5.4/bin/prsync.ori /opt/python-2.5.4/bin/prsync 33a34,37 > parser.add_option('-e', '--exclude', metavar="ARGS", dest='exclude', > action='store', help='Exclude from rsync (OPTIONAL)') > parser.add_option('-E', '--excludefrom', metavar="FILE", dest='excludefrom', > action='store', help='Exclude from rsync based on defined files (OPTIONAL)') 87a92,95 > if opts.exclude: > cmd.append('--exclude=%s' % opts.exclude) > if opts.excludefrom: > cmd.append('--exclude-from=%s' % opts.excludefrom)

Comment #1

Posted on Aug 20, 2011 by Happy Camel

Have you considered using the -x (or -X) option? In general, we prefer to use these when they work because otherwise we'd have to duplicate all of the (thousands?) of rsync command-line options. Thanks.

Comment #2

Posted on Aug 22, 2011 by Swift Horse

doh, didn't see that switch. Ticket can be closed.

Comment #3

Posted on Aug 22, 2011 by Happy Camel

No problem. Let me know if you can think of any way to make this option more visible. It seems to be a common need, and I've tried adding some examples to the man page, but I think it's not quite enough.

Thanks for your participation with pssh.

Comment #4

Posted on Aug 23, 2011 by Swift Horse

It was an oversight on my part. I didn't read the examples thoroughly.

Thanks for the quick response.

Great program by the way. Sure speed things up for us.

Status: Invalid

Labels:
Type-Defect Priority-Medium