• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

rsync change destination permissions

Red Squirrel

No Lifer
How do I go about choosing the permission of files on the fly in rsync?

So that when a backup is done, all the files are chmodded say, 700. There is a --chmod flag but it does not use the standard syntax and is not really documented.

The dirty way is to just have a script run chmod -R 700 but I'm wondering if there's a way within rsync to do it.
 
The chmod options looks pretty documented to me and it even says the syntax is the same as the chmod command.
 
I tried --chmod=700 to no avail. The syntax they show is different. not sure how 700 would translate to the one they show.
 
Back
Top