diff options
author | 2021-08-31 14:44:55 -0700 | |
---|---|---|
committer | 2021-08-31 14:44:55 -0700 | |
commit | 42e7b5a1f31ae5afaaeb5cb0a432c63489375ecc (patch) | |
tree | 26da9a6d7dd67ecd517552018064fcc6dd398ea6 /Python/pywarpx/picmi.py | |
parent | 5685b012866ef63eb77783e1d1fc16532da1a04d (diff) | |
download | WarpX-42e7b5a1f31ae5afaaeb5cb0a432c63489375ecc.tar.gz WarpX-42e7b5a1f31ae5afaaeb5cb0a432c63489375ecc.tar.zst WarpX-42e7b5a1f31ae5afaaeb5cb0a432c63489375ecc.zip |
Docs: Summit umask (Permissions) (#2260)
After the update to RHEL8, Summit changed the default
permissions of newly created files and directories (for the
worse).
This has been reported as OLCFHELP-3442 but we face some
resistance from support to triage this properly at the moment.
Since we need to continue to keep working, we change the `umask`
(aka defaults for new files & dirs) manually so that group
members of the same project can read files and access dirs.
For files and dirs created since this update and not yet using
this `umask`, please use the following fix.
```
find . -type -d -exec chmod a+rx {} \;
find . -type -f -exec chmod a+r {} \;
```
Replace `.` (current directory) with another path if needed.
Diffstat (limited to 'Python/pywarpx/picmi.py')
0 files changed, 0 insertions, 0 deletions