RE: rsync and chmoding permissions on Windows

2006-06-30 Thread Stuart Halliday

 The last version of cwRsync contains rsync binaries with acl support.
 May be worth to try.

Thanks for the tips.
I do use cwRsync as it is very useful. So thanks for providing it.

However RsyncACL doesn't seem to do ACLs correctly.

I copied a folder containing files to another on the same ntfs drive and
some ACLs went missing on the dest. files!


ie
I used:
rsyncacl -rAP /cygdrive/d/test/ /cygdrive/d/test2

I got this on one file after using the rsync above.
--
C:\xcacls d:\test\curl.exe
d:\test\curl.exe Everyone:(OI)(CI)F
 ECSTECH\stuart:(OI)(CI)F
 ECSTECH\Tom:(OI)(CI)F
 BUILTIN\Users:(OI)(CI)F


C:\xcacls d:\test2\curl.exe
d:\test2\curl.exe ECSTECH\stuart:(special access:)
  STANDARD_RIGHTS_ALL
  DELETE
  READ_CONTROL
  WRITE_DAC
  WRITE_OWNER
  SYNCHRONIZE
  STANDARD_RIGHTS_REQUIRED
  FILE_GENERIC_READ
  FILE_GENERIC_EXECUTE
  FILE_READ_DATA
  FILE_READ_EA
  FILE_WRITE_EA
  FILE_EXECUTE
  FILE_READ_ATTRIBUTES
  FILE_WRITE_ATTRIBUTES
  BUILTIN\Users:R
  Everyone:R

---

So I used your tip about using Robocopy afterwards.

ROBOCOPY d:\test d:\test2 /E /COPY:ATSOU

and that worked!

Though using Robocopy across the Internet between 2 Windows servers might
be tricky. 






-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Re: rsync and chmoding permissions on Windows

2006-06-30 Thread Matt McCutchen

On 6/30/06, Stuart Halliday [EMAIL PROTECTED] wrote:

However RsyncACL doesn't seem to do ACLs correctly.

I copied a folder containing files to another on the same ntfs drive and
some ACLs went missing on the dest. files!


As far as I know, rsync only understands POSIX ACLs.  If you tell it
to preserve ACLs when copying from one NTFS filesystem to another,
Cygwin is going to muge the NTFS ACLs into POSIX ACLs before giving
them to rsync and munge the POSIX ACLs rsync applies to the
destination back into NTFS ACLs.  I don't know the details of Cygwin's
conversion procedure, but it seems that any number of strange things
can happen.  Maybe someone should look into teaching rsync to preserve
NTFS ACLs or, failing that, to set sane NTFS ACLs on destination
files.

Matt
--
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


DO NOT REPLY [Bug 3845] Add --remove-source-files

2006-06-30 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=3845





--- Comment #3 from [EMAIL PROTECTED]  2006-06-30 11:03 MST ---
Created an attachment (id=2010)
 -- (https://bugzilla.samba.org/attachment.cgi?id=2010action=view)
Add --remove-source-files option

Here is a patch that adds the --remove-source-files option and deprecates the
--remove-sent-files option.  I've also checked this into CVS, so it is also
available from there or the latest nightly tar file.

The code is young, but should be safe as most of the functionality was taken
from remove-sent-files.  I've run basic tests on it, and it works fine.


-- 
Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug, or are watching the QA contact.
-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


CVS update: rsync

2006-06-30 Thread Wayne Davison

Date:   Fri Jun 30 14:24:26 2006
Author: wayned

Update of /data/cvs/rsync
In directory dp.samba.org:/tmp/cvs-serv20035

Modified Files:
util.c 
Log Message:
Make use of module_dirlen in full_fname().


Revisions:
util.c  1.204 = 1.205
http://www.samba.org/cgi-bin/cvsweb/rsync/util.c?r1=1.204r2=1.205
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


CVS update: rsync/packaging

2006-06-30 Thread Wayne Davison

Date:   Fri Jun 30 14:26:01 2006
Author: wayned

Update of /data/cvs/rsync/packaging
In directory dp.samba.org:/tmp/cvs-serv20946

Modified Files:
nightly-rsync 
Log Message:
Changed the name of the nightly symlink.


Revisions:
nightly-rsync   1.7 = 1.8

http://www.samba.org/cgi-bin/cvsweb/rsync/packaging/nightly-rsync?r1=1.7r2=1.8
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


CVS update: rsync

2006-06-30 Thread Wayne Davison

Date:   Fri Jun 30 15:42:26 2006
Author: wayned

Update of /data/cvs/rsync
In directory dp.samba.org:/tmp/cvs-serv31332

Modified Files:
generator.c 
Log Message:
Handle the --remove-sender-files option by sending MSG_SUCCESS for
any up-to-date file (non-dir).


Revisions:
generator.c 1.283 = 1.284
http://www.samba.org/cgi-bin/cvsweb/rsync/generator.c?r1=1.283r2=1.284
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


CVS update: rsync

2006-06-30 Thread Wayne Davison

Date:   Fri Jun 30 15:42:29 2006
Author: wayned

Update of /data/cvs/rsync
In directory dp.samba.org:/tmp/cvs-serv31350

Modified Files:
hlink.c 
Log Message:
Handle the --remove-sender-files option by sending MSG_SUCCESS for
any file that is being hard-linked.


Revisions:
hlink.c 1.61 = 1.62
http://www.samba.org/cgi-bin/cvsweb/rsync/hlink.c?r1=1.61r2=1.62
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


CVS update: rsync

2006-06-30 Thread Wayne Davison

Date:   Fri Jun 30 15:42:33 2006
Author: wayned

Update of /data/cvs/rsync
In directory dp.samba.org:/tmp/cvs-serv31379

Modified Files:
io.c main.c receiver.c sender.c 
Log Message:
The remove_sent_files var was renamed to remove_sender_files.


Revisions:
io.c1.196 = 1.197
http://www.samba.org/cgi-bin/cvsweb/rsync/io.c?r1=1.196r2=1.197
main.c  1.310 = 1.311
http://www.samba.org/cgi-bin/cvsweb/rsync/main.c?r1=1.310r2=1.311
receiver.c  1.181 = 1.182
http://www.samba.org/cgi-bin/cvsweb/rsync/receiver.c?r1=1.181r2=1.182
sender.c1.97 = 1.98
http://www.samba.org/cgi-bin/cvsweb/rsync/sender.c?r1=1.97r2=1.98
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


CVS update: rsync

2006-06-30 Thread Wayne Davison

Date:   Fri Jun 30 15:42:36 2006
Author: wayned

Update of /data/cvs/rsync
In directory dp.samba.org:/tmp/cvs-serv31408

Modified Files:
options.c 
Log Message:
Added --remove-sender-files and deprecated --remove-sent-files.


Revisions:
options.c   1.346 = 1.347
http://www.samba.org/cgi-bin/cvsweb/rsync/options.c?r1=1.346r2=1.347
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


CVS update: rsync

2006-06-30 Thread Wayne Davison

Date:   Fri Jun 30 15:42:41 2006
Author: wayned

Update of /data/cvs/rsync
In directory dp.samba.org:/tmp/cvs-serv31433

Modified Files:
rsync.yo rsync.1 
Log Message:
Changed --remove-sent-files into --remove-sender-files.


Revisions:
rsync.yo1.374 = 1.375
http://www.samba.org/cgi-bin/cvsweb/rsync/rsync.yo?r1=1.374r2=1.375
rsync.1 1.386 = 1.387
http://www.samba.org/cgi-bin/cvsweb/rsync/rsync.1?r1=1.386r2=1.387
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


CVS update: rsync

2006-06-30 Thread Wayne Davison

Date:   Fri Jun 30 15:52:52 2006
Author: wayned

Update of /data/cvs/rsync
In directory dp.samba.org:/tmp/cvs-serv3984

Modified Files:
generator.c hlink.c io.c main.c options.c receiver.c sender.c 
rsync.yo rsync.1 
Log Message:
Decided that I like remove-source-files better than remove-sender-files.


Revisions:
generator.c 1.284 = 1.285
http://www.samba.org/cgi-bin/cvsweb/rsync/generator.c?r1=1.284r2=1.285
hlink.c 1.62 = 1.63
http://www.samba.org/cgi-bin/cvsweb/rsync/hlink.c?r1=1.62r2=1.63
io.c1.197 = 1.198
http://www.samba.org/cgi-bin/cvsweb/rsync/io.c?r1=1.197r2=1.198
main.c  1.311 = 1.312
http://www.samba.org/cgi-bin/cvsweb/rsync/main.c?r1=1.311r2=1.312
options.c   1.347 = 1.348
http://www.samba.org/cgi-bin/cvsweb/rsync/options.c?r1=1.347r2=1.348
receiver.c  1.182 = 1.183
http://www.samba.org/cgi-bin/cvsweb/rsync/receiver.c?r1=1.182r2=1.183
sender.c1.98 = 1.99
http://www.samba.org/cgi-bin/cvsweb/rsync/sender.c?r1=1.98r2=1.99
rsync.yo1.375 = 1.376
http://www.samba.org/cgi-bin/cvsweb/rsync/rsync.yo?r1=1.375r2=1.376
rsync.1 1.387 = 1.388
http://www.samba.org/cgi-bin/cvsweb/rsync/rsync.1?r1=1.387r2=1.388
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs


Satellite TV hex files for Funcards, Goldcards

2006-06-30 Thread ECruz68007
Dear Malclm Clif,

I saw your site about Satellite TV hex files for Funcards and Goldcards.

 Click here: Satellite TV hex files for Funcards, Goldcards 

Is there a hex card for anoluge Viddeocipher II RS descrambler module?
I's similar like DSS, DTV or DishNetwork receivers that has a card slot
to insert a access card, but it's the same way with the analogue 
Videocipher II RS descrambler module, which also has a card slot
to insert some kind of access card. 

Videocipher II RS ( Renewable Security ) descrambler module is 
to use to descramble analogue C-band satellite channels that are
scrambled. 

My understanding is an order to access from the VCII RS descrambler
module is to have to have a TV pass card, like a credit card? With
Renewable Security programer to program the descrambler bord,
and that has PN numbers to access from. Although, the descrambler
module I have does provide the PN number on it. 

Do you have any Hex card for Videocipher II technology? If not,
who would you suggest to refer me to that has such Hex card
for VCIIRS descrambler module??

Hope my inquiry helps for answers.

Thank you for taking the time to read my inquiry.
Regards,
Eugene
___
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs