Hi there.
I faced issue with CDR exporting with the newly installed YETI Switch (latest version). The same issue was described here earlier (and it looks like it was classified as a bug) and issue was connected to the wrong file permission of generated .gz file. There is -rw------- (600). Manually changing to -rw-r–r-- (644) allow download it from web. Can I do something to fix mentioned problem because under production/live it impossible change permission for each file.
Hoping for your prompt reply: Thanks in advance.
You could change default directory permissions to fix this.
Thanks for reply @dmitry.s .
Default directory permission is set to 777 (drwxrwxrwt 10 root root 318 Sep 3 00:00 tmp) by default, but exported CDR generates as 600 (-rw------- 1 postgres postgres 282 Sep 2 17:03 1.csv.gz).
Or do you mean something else?
read about setfacl
Done.
setfacl -dm g:root:rwx /tmp
Thank you very much!