Florian Klink
Florian Klink
The check the downstream application does is [here](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/main/src/util/config.rs#L258): ```rust use std::os::unix::fs::MetadataExt; let metadata = std::fs::metadata(file_path)?; if metadata.mode() & 0o077 != 0 { return Err(...) } ``` How would you propose...
> Such kind of enforced check is really pointless and troublesome IMHO. People can restrict access to specific files in mulitple ways, e.g. by changing the permission of upper directories,...
> Anyway, I am pretty sure we shouldn't weaken the security of the system just because some software does not understand ACLs and the effects of it How would reverting...