Set file creation to default to respect umask#235
Set file creation to default to respect umask#235lithorus wants to merge 2 commits intofacebook:mainfrom
Conversation
|
Hi @lithorus! Thank you for your pull request and welcome to our community. Action RequiredIn order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you. ProcessIn order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA. Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with If you have received this in error or have any questions, please contact us at cla@meta.com. Thanks! |
|
Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Meta Open Source project. Thanks! |
|
do you have test / demonstration of what this fixes (a before/after) because 644 seems a reasonable default |
|
The reason is that 644 should be default is only because umask 022 is default. Here is a test : umask 022 # Default umask
touch test022
ls -la test022 # mode should be 0644
(wdt command)
ls -la wdt022 # All files should be 0644
umask 000 # Change umask to 000
touch test000
ls -la test000 # mode should be 0666
(wdt command)
ls -la wdt000 # All files should be 0666 (but are not) |
This is to make sure that file creation respects umask.
Previously it would always create with permission of
0644which implices a umask of022.